-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (37 loc) · 973 Bytes
/
ci.yml
File metadata and controls
37 lines (37 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
branches:
- 'main'
- 'release-**'
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
version: "26.1"
- name: Install protoc-gen-go
run: |
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.34.1
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.3.0
- name: Verify codegen
run: |
make gen
if [ -n "$(git status --porcelain)" ]; then
echo $(git diff)
echo "codegen is out of date. Please run \"make gen\" to update."
exit 1
else
echo "codegen is up to date."
fi