Skip to content

Commit

Permalink
add Go 1.21 to the build matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Sep 15, 2023
1 parent 0c2ade1 commit 03903f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
go-version: [ "1.18", "1.19", "1.20" ]
go-version: [ "1.18", "1.19", "1.20", "1.21" ]
runs-on: ${{ matrix.os }}
steps:
- name: setup Go ${{ matrix.go-version }}
Expand All @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest" ]
go-version: [ "1.18", "1.19", "1.20" ]
go-version: [ "1.18", "1.19", "1.20", "1.21" ]
runs-on: ${{ matrix.os }}
env:
GOARCH: "386"
Expand All @@ -50,7 +50,7 @@ jobs:
- name: setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.21"
- name: checkout
uses: actions/checkout@v3
- name: build
Expand All @@ -67,7 +67,7 @@ jobs:
- name: setup Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
go-version: "1.21"
- name: checkout
uses: actions/checkout@v3
- name: measure coverage
Expand Down

0 comments on commit 03903f5

Please sign in to comment.