-
-
Notifications
You must be signed in to change notification settings - Fork 5
71 lines (68 loc) · 2.4 KB
/
go.yaml
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
name: go
on: push
jobs:
# Adapted from https://github.com/marketplace/actions/skip-duplicate-actions
pre_job:
continue-on-error: true
runs-on: ubuntu-latest
# Map a step output to a job output
outputs:
should_skip: ${{ steps.skip_check.outputs.should_skip }}
steps:
- id: skip_check
uses: fkirc/skip-duplicate-actions@v5
with:
# https://github.com/marketplace/actions/skip-duplicate-actions#skip-concurrent-workflow-runs
concurrent_skipping: "same_content_newer"
# https://github.com/marketplace/actions/skip-duplicate-actions#cancel_others
# Don't cancel other jobs, they might be pushes to master
cancel_others: false
# https://github.com/marketplace/actions/skip-duplicate-actions#do_not_skip
do_not_skip: '["workflow_dispatch", "schedule", "merge_group", "release"]'
# https://github.com/marketplace/actions/skip-duplicate-actions#paths
paths: '["go.*", "*.go", "cmd/**", "Cargo.*", "pyproject.toml", "python/**", "rust/**"]'
lint:
needs: pre_job
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "stable"
- uses: golangci/golangci-lint-action@v6
with:
version: "v1.60"
test:
needs: pre_job
strategy:
matrix:
include:
- name: "ubuntu + coverage"
os: "ubuntu-latest"
go: "stable"
codecov: true
- name: "macos"
os: "macos-latest"
go: "stable"
- name: "windows"
os: "windows-latest"
go: "stable"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }}
- uses: actions/setup-go@v5
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }}
with:
go-version: ${{ matrix.go }}
- name: Run tests with coverage
if: ${{ needs.pre_job.outputs.should_skip != 'true' || matrix.codecov }}
run: make test-go-coverage
env:
GO111MODULE: "auto"
- name: Upload coverage to CodeCov
if: ${{ matrix.codecov }}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}