Skip to content

Commit

Permalink
Fix proto Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
majst01 committed Feb 14, 2023
1 parent f5e7c1a commit 24684d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,7 @@ jobs:

- name: build and test
run: |
make test
make bench
make
- name: Publish Codecoverage report
run: bash <(curl -s https://codecov.io/bash)
Expand Down
6 changes: 3 additions & 3 deletions proto/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ _buf:

.PHONY: protolint
protolint:
@$(MAKE) buf CMD="format -w api/v1"
@$(MAKE) buf CMD="lint -v"
@$(MAKE) _buf CMD="format -w api/v1"
@$(MAKE) _buf CMD="lint -v"

.PHONY: protoc
protoc: protolint
@$(MAKE) buf CMD="generate -v"
@$(MAKE) _buf CMD="generate -v"

0 comments on commit 24684d6

Please sign in to comment.