1
0
Fork 0
mirror of https://github.com/imjasonh/client-go2 synced 2026-07-08 09:05:38 +00:00
client-go2/Makefile
Jason Hall d2b0d467e5
fix CI
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-07-27 16:35:38 -04:00

22 lines
231 B
Makefile

tidy:
go mod tidy
example:
go run ./
test:
go test -v -race ./...
e2e:
go test -v -race -tags=e2e ./...
vet:
go vet ./...
fmt:
gofmt -s -w .
lint:
golangci-lint run --fix ./...
all: tidy test vet fmt lint e2e example