Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
qdm12 committed Dec 6, 2022
1 parent 4bc396b commit 10afac6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:

- name: Up to date Go proto generated
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28
PROTOC_VERSION=21.10
curl -sL --output protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip"
sudo unzip protoc.zip -d /usr/local
rm protoc.zip
go generate -run "protoc" ./...
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28 && \
PROTOC_VERSION=21.10 && \
curl -sL --output protoc.zip "https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip" && \
sudo unzip protoc.zip -d /usr/local && \
rm protoc.zip && \
go generate -run "protoc" ./... && \
git diff --exit-code
- name: Lint
Expand Down

0 comments on commit 10afac6

Please sign in to comment.