We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 912ba66 commit 1513470Copy full SHA for 1513470
.github/workflows/ci.yml
@@ -6,7 +6,7 @@ on:
6
7
jobs:
8
ubuntu:
9
- name: Build and Test on Ubuntu
+ name: Build, Test, and Lint on Ubuntu
10
runs-on: ubuntu-latest
11
12
steps:
@@ -31,6 +31,11 @@ jobs:
31
- name: Run tests
32
run: make test
33
34
+ - name: Run linter
35
+ uses: golangci/golangci-lint-action@v9
36
+ with:
37
+ version: v2.6.1
38
+
39
macos:
40
name: Build and Test on macOS
41
runs-on: macos-latest
@@ -91,20 +96,3 @@ jobs:
91
96
92
97
93
98
94
-
95
- lint:
- name: Lint
- runs-on: ubuntu-latest
99
- steps:
100
- - uses: actions/checkout@v4
101
102
- - name: Set up Go
103
- uses: actions/setup-go@v5
104
- with:
105
- go-version: '1.23.3'
106
107
- - name: Run linter
108
- uses: golangci/golangci-lint-action@v9
109
110
- version: v2.6.1
0 commit comments