diff --git a/.build.yml b/.build.yml index f0df088..e0771c0 100644 --- a/.build.yml +++ b/.build.yml @@ -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 diff --git a/Makefile b/Makefile index abffe4d..ad9f099 100644 --- a/Makefile +++ b/Makefile @@ -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