Skip to content

Commit

Permalink
Update Golang validate workflow (#134)
Browse files Browse the repository at this point in the history
  • Loading branch information
cynicaljoy committed Apr 2, 2024
1 parent 5310428 commit 7b6e37a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-validate-driver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ jobs:
- 8443:8443
strategy:
matrix:
go: [ '1.20', '1.19' ]
go: [ '1.22', '1.21', '1.20', '1.19' ]
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
Expand All @@ -45,7 +45,7 @@ jobs:
run: go vet ./...

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

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

0 comments on commit 7b6e37a

Please sign in to comment.