-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (44 loc) · 1.07 KB
/
Copy pathgo-test.yml
File metadata and controls
54 lines (44 loc) · 1.07 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
name: Test & Lint
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
go-test:
name: Run all tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnorton5432/setup-task@v1
with:
task-version: 3.48.0
- uses: actions/setup-go@v6
with:
go-version-file: './go.mod'
- run: task test
- uses: dominikh/staticcheck-action@v1
if: github.event_name != 'pull_request'
with:
version: "latest"
install-go: false
- uses: reviewdog/action-staticcheck@v1
if: github.event_name == 'pull_request'
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
filter_mode: nofilter
fail_on_error: true
golangci-lint:
name: Run golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: './go.mod'
- uses: golangci/golangci-lint-action@v9
with:
version: latest