-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (44 loc) · 1.13 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
name: ci
on:
push:
branches:
- main
paths:
- "**/*.go"
- "*.go"
- "go.mod"
- "go.sum"
pull_request:
paths:
- "**/*.go"
- "*.go"
- "go.mod"
- "go.sum"
permissions:
contents: read
jobs:
# By splitting testing into its own job will ensure the needs: clause for
# static-analysis runs without waiting on the entire matrix. Jobs that run
# against macos and windows are considerably slower
test:
uses: purpleclay/github/.github/workflows/go-test.yml@main
with:
go-version: ${{ vars.GO_VERSION }}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
test-by-os:
if: "!startsWith(github.ref, 'refs/tags/')"
strategy:
matrix:
os: [macos-latest, windows-latest]
uses: purpleclay/github/.github/workflows/go-test.yml@main
with:
os: ${{ matrix.os }}
go-version: ${{ vars.GO_VERSION }}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
lint:
uses: purpleclay/github/.github/workflows/golangci-lint.yml@main
with:
version: ${{ vars.GOLANGCI_LINT_VERSION }}
go-version: ${{ vars.GO_VERSION }}