Skip to content

Commit

Permalink
feat: update justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Yakiyo committed Aug 22, 2023
1 parent 789bb94 commit e290c05
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
set positional-arguments

alias b := build
alias u := update
alias r := run

default:
@just --list

update:
go mod tidy
go get

build:
go build -o tilde main.go
@just --list

@run *arg:
go run main.go $@

test:
go test ./...

build:
go build -o tldr main.go

fmt:
go fmt ./...
go fmt ./...

update:
go get
go mod tidy

0 comments on commit e290c05

Please # to comment.