Skip to content

Commit 224a7a5

Browse files
committed
#41: Add lint stage to the workflow (#45)
* #41: Add lint stage to the workflow * #41: Replace 'latest' with exact version of golangci-lint * #41: Attempt to skip go installation * #41: Attempt to change github action
1 parent 766bb27 commit 224a7a5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/go.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@ on:
99
- dev-*
1010

1111
jobs:
12+
lint:
13+
strategy:
14+
matrix:
15+
go-version: [1.16.x]
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
20+
- name: golangci-lint
21+
uses: reviewdog/action-golangci-lint@v2
1222
test:
1323
strategy:
1424
matrix:

0 commit comments

Comments
 (0)