Skip to content

Commit

Permalink
Fix Github Actions
Browse files Browse the repository at this point in the history
This commit fixes our Github actions pipeline via using `go install` instead of `go get`. Moreover, we only support the last two Go releases from now on. This is compliant to: https://go.dev/doc/devel/release
  • Loading branch information
shibumi committed Mar 3, 2024
1 parent fe183c1 commit 11504a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
go-version: [1.21.x, 1.22.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
GO111MODULE=off go get github.com/mattn/goveralls
go install github.com/mattn/goveralls@latest
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
- name: Fuzz tests
Expand Down

0 comments on commit 11504a3

Please sign in to comment.