awawa
This commit is contained in:
parent
4fc045e037
commit
b9a05bedf9
8 changed files with 45 additions and 119 deletions
24
justfile
Normal file
24
justfile
Normal file
|
@ -0,0 +1,24 @@
|
|||
run:
|
||||
go run .
|
||||
|
||||
run-nix:
|
||||
nix run .
|
||||
|
||||
run-container:
|
||||
nix build .#container
|
||||
docker load -i result
|
||||
docker run -it --rm -p 8169:8169 localhost/roleypoly/roleypoly
|
||||
|
||||
precommit: fmt tidy update-vendor-hash test
|
||||
|
||||
fmt:
|
||||
go fmt ./...
|
||||
|
||||
tidy:
|
||||
go mod tidy
|
||||
|
||||
update-vendor-hash:
|
||||
scripts/update-vendor-hash.sh
|
||||
|
||||
test:
|
||||
go test ./...
|
Loading…
Add table
Add a link
Reference in a new issue