Skip to content

Commit

Permalink
feat: add golangci-lint to the build
Browse files Browse the repository at this point in the history
  • Loading branch information
a-h committed Mar 5, 2023
1 parent 120aaa2 commit ef8a6f8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,16 @@ jobs:

- name: Test
run: go test -v ./...

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.20.1

- name: Lint
uses: golangci/golangci-lint-action@v3

0 comments on commit ef8a6f8

Please sign in to comment.