Skip to content

Commit

Permalink
#41: Add lint stage to the workflow (#45)
Browse files Browse the repository at this point in the history
* #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
  • Loading branch information
vdjagilev committed Jul 30, 2021
1 parent 766bb27 commit 224a7a5
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@ on:
- dev-*

jobs:
lint:
strategy:
matrix:
go-version: [1.16.x]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: golangci-lint
uses: reviewdog/action-golangci-lint@v2
test:
strategy:
matrix:
Expand Down

0 comments on commit 224a7a5

Please sign in to comment.