Update to go1.25 as minimal version (#2205)

This commit is contained in:
Erik Dubbelboer
2026-05-16 11:08:08 +09:00
committed by GitHub
parent e9208ecebf
commit c1e4fdd5b5
5 changed files with 44 additions and 66 deletions
+10 -10
View File
@@ -2,22 +2,22 @@ name: Test
on:
push:
branches:
- master
- master
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [1.24.x, 1.26.x]
os: [ubuntu-latest, macos-latest, windows-latest, macos-14]
go-version: [ 1.25.x, 1.26.x ]
os: [ ubuntu-latest, macos-latest, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go-version }}
- run: go version
- run: go test -shuffle=on ./...
- run: go test -race -shuffle=on ./...
- run: go version
- run: go test -shuffle=on ./...
- run: go test -race -shuffle=on ./...