-
Notifications
You must be signed in to change notification settings - Fork 1
62 lines (62 loc) · 1.65 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
name: CI
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
platform:
- Linux
- macOS
- Windows
go-version:
- '1.20'
- '1.21'
- '1.22'
architecture:
- 386
- amd64
include:
- platform: Linux
os: ubuntu-latest
- platform: macOS
os: macos-latest
- platform: Windows
os: windows-latest
exclude:
- platform: Linux
architecture: 386
- platform: macOS
architecture: 386
fail-fast: false
name: Go ${{ matrix.go-version }} (${{ matrix.architecture }}) on ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
architecture: ${{ matrix.architecture }}
- name: Download modules
run: go mod download
- name: Test (386)
if: matrix.architecture == '386'
run: go test -v -coverprofile coverage.txt ./...
- name: Test (amd64)
if: matrix.architecture == 'amd64'
run: go test -v -race -coverprofile coverage.txt ./...
- name: Vet
run: go vet -unsafeptr=false ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
env_vars: GO
fail_ci_if_error: true
flags: ${{ matrix.platform }}
env:
GO: ${{ matrix.go-version }}