-
Notifications
You must be signed in to change notification settings - Fork 12
93 lines (78 loc) · 2.24 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
name: CI
on:
push:
branches: [main]
pull_request:
branches: ['*']
permissions:
contents: read
jobs:
test:
name: Test / Go ${{ matrix.go-version }} / ${{ matrix.os }}/${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version: ['1.22.x', '1.21.x', '1.20.x']
arch: ['amd64', '386', 'arm64']
os: ['ubuntu-latest']
include:
- os: 'macos-latest'
arch: 'amd64'
go-version: '1.22.x'
- os: 'windows-latest'
arch: 'amd64'
go-version: '1.22.x'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
# GH runners use amd64 which also support 386.
# For other architectures, use qemu.
- name: Install QEMU
if: matrix.arch != 'amd64' && matrix.arch != '386'
uses: docker/setup-qemu-action@v3
- name: Enable race detection
shell: bash
run: |
# Only amd64 support data-race detection in CI.
# qemu doesn't give us cgo, which is needed for arm64.
if [[ "$GOARCH" == amd64 ]]; then
echo "Enabling data-race detection."
else
echo "NO_RACE=1" >> "$GITHUB_ENV"
fi
env:
GOARCH: ${{ matrix.arch }}
- name: Test ${{ matrix.arch }}
run: make cover
shell: bash
env:
GOARCH: ${{ matrix.arch }}
- name: Coverage
uses: codecov/codecov-action@v4
with:
files: ./cover.unsafe.out,./cover.safe.out
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Check out repository
- uses: actions/setup-go@v5
name: Set up Go
with:
# Use the Go version specified in the go.mod for linting.
go-version-file: go.mod
cache: false # managed by golangci-lint
- uses: golangci/golangci-lint-action@v4
name: Install golangci-lint
with:
version: latest
args: --version # make lint will run the linter
- name: Lint
run: make lint GOLANGCI_LINT_ARGS=--out-format=github-actions
# Write in a GitHub Actions-friendly format
# to annotate lines in the PR.