-
Notifications
You must be signed in to change notification settings - Fork 12
52 lines (43 loc) · 952 Bytes
/
test.yml
File metadata and controls
52 lines (43 loc) · 952 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
env:
TESTFLAGS: -v
BUILDFLAGS: -v
jobs:
build:
strategy:
matrix:
go-version:
- 1.21.x # oldest supported (see go.mod)
- oldstable
- stable
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Build
run: |
make build
- name: lint
uses: golangci/golangci-lint-action@v7
with:
version: v2.0
args: --print-resources-usage --timeout=10m --verbose
- name: Test
run: |
make coverage
- name: Codecov
uses: codecov/codecov-action@v5
with:
directory: ./