-
Notifications
You must be signed in to change notification settings - Fork 12
56 lines (56 loc) · 1.16 KB
/
ci.yaml
File metadata and controls
56 lines (56 loc) · 1.16 KB
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: Run CI Tests
on:
pull_request:
paths-ignore:
- 'README.md'
- 'LICENSE'
push:
branches:
- 'main'
jobs:
run-lint:
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
cache: true
go-version-file: go.mod
- uses: golangci/golangci-lint-action@v6
with:
version: v1.64.8
run-changes:
timeout-minutes: 5
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
cache: true
go-version-file: go.mod
- name: Check for changes
run: |
make changes
run-tests:
timeout-minutes: 5
needs:
- 'run-lint'
- 'run-changes'
strategy:
fail-fast: false
matrix:
os:
- ubuntu-24.04
- macos-26
- windows-2022
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
cache: true
go-version-file: go.mod
- name: Run Go Test
run: |
make test