This commit is contained in:
2024-05-18 18:49:03 -07:00
parent 81b25d1421
commit 82cfc3c88e
3 changed files with 29 additions and 3 deletions

View File

@@ -2,3 +2,10 @@ default: test
test:
go test -v -count=1 ./...
fmt:
go fmt ./...
lint:
golangci-lint run
sh -c 'test -z "$$(gofmt -l .)"'