-
Notifications
You must be signed in to change notification settings - Fork 18
101 lines (97 loc) · 2.88 KB
/
CI.yml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: CI
'on':
push:
tags:
- v*
branches:
- main
pull_request: null
jobs:
build:
strategy:
matrix:
go-version:
- 1.21.x
os:
- macos-latest
- ubuntu-latest
name: 'Build/Test (${{ matrix.os}}, Go ${{ matrix.go-version }})'
runs-on: '${{ matrix.os }}'
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: '${{ matrix.go-version }}'
- name: Install Protoc
uses: arduino/setup-protoc@v3
with:
repo-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Install protoc-gen-go
run: go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28.1
- name: Check Protobuf Generation
run: |
go generate ./...
git diff -G'^[^/]' --exit-code
- name: Generate all protobufs
run: go generate ./...
- name: Build all packages
run: go build -v ./...
- name: Test all packages
run: go test -v ./...
lint:
strategy:
matrix:
go-version:
- 1.21.x
os:
- ubuntu-latest
name: 'Lint ${{ matrix.dir }} (${{ matrix.os }}, Go ${{ matrix.go-version }})'
runs-on: '${{ matrix.os }}'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '${{ matrix.go-version }}'
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.3.0
with:
version: latest
working-directory: ./
args: >
-D errcheck -E stylecheck -E goimports -E misspell -E revive -E
gofmt -E goimports --exclude-use-default=false --max-same-issues=0
--max-issues-per-linter=0 --timeout 2m
lintc:
strategy:
matrix:
go-version:
- 1.21.x
os:
- ubuntu-latest
name: 'Lint CGO (${{ matrix.os}}, Go ${{ matrix.go-version }})'
runs-on: '${{ matrix.os }}'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v2
with:
go-version: '${{ matrix.go-version }}'
- name: Check for CGO Warnings (gcc)
run: CGO_CFLAGS=-Werror CC=gcc go build ./...
- name: Check for CGO Warnings (clang)
run: CGO_CFLAGS=-Werror CC=clang go build ./...