Skip to content

Commit

Permalink
.github/workflows: add Go 1.23 to the tests (#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimehoshi authored Jun 21, 2024
1 parent 99a13ed commit 5fcdbfa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
go: ['1.18.x', '1.19.x', '1.20.x', '1.21.x', '1.22.x']
go: ['1.18.x', '1.19.x', '1.20.x', '1.21.x', '1.22.x', '1.23.0-rc.1']
name: Test with Go ${{ matrix.go }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
defaults:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
env GOOS=linux GOARCH=arm64 CGO_ENABLED=1 go test -c -o=purego-test-cgo .
env QEMU_LD_PREFIX=/usr/aarch64-linux-gnu qemu-aarch64 ./purego-test-cgo -test.shuffle=on -test.v -test.count=10
echo "=> go build plugin"
echo "=> go build (plugin)"
# Make sure that plugin buildmode works since we save the R15 register (#254)
env GOOS=linux GOARCH=arm64 CGO_ENABLED=1 go build -buildmode=plugin ./examples/libc
Expand Down

0 comments on commit 5fcdbfa

Please sign in to comment.