1
Fork 0

lint is a composite target

main
Motiejus Jakštys 2021-06-01 19:47:45 +03:00
parent b138e2b1f8
commit 1d58548136
2 changed files with 8 additions and 2 deletions

View File

@ -11,6 +11,6 @@ tasks:
- test: | - test: |
make -C undocker coverage.html make -C undocker coverage.html
- lint: | - lint: |
make -C undocker lint make -C undocker -j$(nproc) -O lint
artifacts: artifacts:
- undocker/coverage.html - undocker/coverage.html

View File

@ -9,8 +9,14 @@ test:
go test -race -cover ./... go test -race -cover ./...
.PHONY: lint .PHONY: lint
lint: lint: vet staticcheck
.PHONY: vet
vet:
go vet ./... go vet ./...
.PHONY: staticcheck
staticcheck:
$(GOBIN)staticcheck -f stylish ./... $(GOBIN)staticcheck -f stylish ./...
.INTERMEDIATE: coverage.out .INTERMEDIATE: coverage.out