@ -11,6 +11,6 @@ tasks:
- test: |
make -C undocker coverage.html
- lint: |
make -C undocker lint
make -C undocker -j$(nproc) -O lint
artifacts:
- undocker/coverage.html
@ -9,8 +9,14 @@ test:
go test -race -cover ./...
.PHONY: lint
lint:
lint: vet staticcheck
.PHONY: vet
vet:
go vet ./...
.PHONY: staticcheck
staticcheck:
$(GOBIN)staticcheck -f stylish ./...
.INTERMEDIATE: coverage.out