Skip to content

Commit

Permalink
fix: add support to go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
savsgio committed Mar 3, 2024
1 parent 17be679 commit 54538f9
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,22 @@ jobs:
build:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x]
go-version:
[
1.13.x,
1.14.x,
1.15.x,
1.16.x,
1.17.x,
1.18.x,
1.19.x,
1.20.x,
1.21.x,
]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go version
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,23 @@ jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x, 1.15.x, 1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x]
go-version:
[
1.13.x,
1.14.x,
1.15.x,
1.16.x,
1.17.x,
1.18.x,
1.19.x,
1.20.x,
1.21.x,
]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- run: go version
Expand Down

0 comments on commit 54538f9

Please sign in to comment.