-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (40 loc) · 874 Bytes
/
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
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:
test:
uses: purpleclay/github/.github/workflows/go-test.yml@main
strategy:
matrix:
os: [ubuntu-24.04, macos-14, windows-2022]
with:
go-version: ${{ vars.GO_VERSION }}
secrets:
github-token: ${{ secrets.GITHUB_TOKEN }}
lint:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: golangci-lint
uses: dagger/dagger-for-github@v5
with:
verb: call
module: github.com/purpleclay/daggerverse/golang
args: --src . lint
cloud-token: ${{ secrets.DAGGER_CLOUD_TOKEN }}