v4/justfile
2025-03-24 23:44:07 -07:00

24 lines
No EOL
322 B
Makefile

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 ./...