Skip to content

Commit b99b5f7

Browse files
authored
Fix the lint action after upgrade (#790)
1 parent 8af0af7 commit b99b5f7

File tree

1 file changed

+4
-10
lines changed

1 file changed

+4
-10
lines changed

.github/workflows/ci.yml

+4-10
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,7 @@ on:
77
branches:
88
- master
99
jobs:
10-
golangci:
11-
name: lint
12-
runs-on: ubuntu-latest
13-
steps:
14-
- uses: actions/checkout@v3
15-
- name: golangci-lint
16-
uses: golangci/golangci-lint-action@v3
17-
with:
18-
version: latest
1910
test:
20-
needs: [golangci]
2111
strategy:
2212
matrix:
2313
go_version:
@@ -39,6 +29,10 @@ jobs:
3929
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
4030
restore-keys: |
4131
${{ runner.os }}-go-
32+
- name: lint
33+
uses: golangci/golangci-lint-action@v3
34+
with:
35+
version: latest
4236
- name: Run Tests
4337
run: make test
4438
coverage:

0 commit comments

Comments
 (0)