ntfy-alertmanager/.justfile

19 lines
211 B
Makefile
Raw Normal View History

2024-11-03 19:38:20 +01:00
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