Skip to content

Commit

Permalink
Fix golangci-lint version and go version
Browse files Browse the repository at this point in the history
  • Loading branch information
spyzhov committed Mar 14, 2024
1 parent 1b3b58f commit 06e9e68
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.4.0
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.51.2
version: v1.56.2
args: -v

test:
strategy:
matrix:
go-version: [ '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x' ]
go-version: [ '1.16.x', '1.17.x', '1.18.x', '1.19.x', '1.20.x' , '1.21.x' , '1.22.x' ]
os: [ ubuntu-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -47,10 +47,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Go 1.20.x on ubuntu-latest
- name: Setup Go 1.22.x on ubuntu-latest
uses: actions/setup-go@v3
with:
go-version: '1.20.x'
go-version: '1.22.x'
- name: Setup Dependencies
run: |
go get golang.org/x/tools/cmd/cover
Expand Down

0 comments on commit 06e9e68

Please sign in to comment.