-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (51 loc) · 1.21 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
name: CI
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
lint:
name: "Lint"
strategy:
matrix:
go-version: [ "1.23" ]
os: [ "ubuntu-latest" ]
runs-on: ${{ matrix.os }}
permissions:
pull-requests: read
contents: read
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
check-latest: true
- uses: actions/checkout@v4
- name: "Lint"
uses: golangci/golangci-lint-action@v6
with:
only-new-issues: true
args: --timeout 5m --issues-exit-code 0
test:
name: "Test"
strategy:
matrix:
go-version: [ "1.22", "1.23" ]
os: [ "ubuntu-latest", "windows-latest", "macos-latest" ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
check-latest: true
- name: "Run tests"
run: go test -json ./... > test.json
- name: "Annotate tests"
if: always()
uses: guyarb/[email protected]
with:
test-results: test.json