Skip to content

Commit

Permalink
cleanup pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ubogdan committed Apr 20, 2024
1 parent 71c5128 commit 842e420
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: deps
run: make deps
- name: static program analysis
run: make fmt-check lint vet
run: make fmt-check vet
- name: build
run: make build
- name: test
Expand Down
8 changes: 0 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ clean:
deps:
$(GOMODTIDY)

.PHONY: devel-deps
devel-deps:
$(GOINSTALL) golang.org/x/lint/golint

.PHONY: lint
lint: devel-deps
for PKG in $(PACKAGES); do golint -set_exit_status $$PKG || exit 1; done;

.PHONY: vet
vet: deps devel-deps
$(GOVET) $(PACKAGES)
Expand Down

0 comments on commit 842e420

Please sign in to comment.