ntfy-alertmanager/.justfile
Thorben Günther b3d5045ca7
Try out just
2024-11-03 19:38:20 +01:00

18 lines
211 B
Makefile

test:
go test -v ./...
lint:
go vet ./...
staticcheck ./...
revive ./...
gofmt:
gofmt -l .
test -z $(gofmt -l .)
build:
go build
upgrade-deps:
go get -u ./...
go mod tidy