Skip to content

Commit

Permalink
Add lint ci step.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbub committed Oct 10, 2024
1 parent aded50a commit 46e9027
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,17 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23'

- name: Build
run: go build -v ./...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: 'v1.60'

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

0 comments on commit 46e9027

Please sign in to comment.