update to Go 1.24.0 and test with it on CI as well

pull/918/head
Daniel Martí 2 months ago committed by Paul Scheduikat
parent 2adfc43326
commit 3936ebfe5d

@ -25,7 +25,7 @@ jobs:
test: test:
strategy: strategy:
matrix: matrix:
go-version: [1.23.x] go-version: [1.23.x, 1.24.x]
os: [ubuntu-latest, macos-latest, windows-latest] os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
@ -53,22 +53,21 @@ jobs:
# Static checks from this point forward. Only run on one Go version and on # Static checks from this point forward. Only run on one Go version and on
# linux, since it's the fastest platform, and the tools behave the same. # linux, since it's the fastest platform, and the tools behave the same.
- name: Test third-party project builds - name: Test third-party project builds
if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
run: | run: |
go install go install
./scripts/check-third-party.sh ./scripts/check-third-party.sh
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
run: ./scripts/crlf-test.sh run: ./scripts/crlf-test.sh
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
run: diff <(echo -n) <(gofmt -d .) run: diff <(echo -n) <(gofmt -d .)
- if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
run: go vet ./... run: go vet ./...
# TODO: staticcheck temporarily disabled as it was built with go1.23.4 - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.24.x'
# - if: matrix.os == 'ubuntu-latest' && matrix.go-version == '1.23.x' uses: dominikh/staticcheck-action@v1
# uses: dominikh/staticcheck-action@v1 with:
# with: version: "2025.1"
# version: "2024.1.1" install-go: false
# install-go: false
# We don't care about GOARCH=386 particularly, hence -short, # We don't care about GOARCH=386 particularly, hence -short,
# but it helps ensure we support 32-bit hosts and targets well. # but it helps ensure we support 32-bit hosts and targets well.
@ -82,6 +81,6 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: 1.23.x go-version: 1.24.x
cache: false cache: false
- run: go test -short ./... - run: go test -short ./...

@ -1,6 +1,6 @@
// Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT. // Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT.
// Generated from Go versions [go1.23.6 go1.24rc3]. // Generated from Go versions [go1.23.6 go1.24.0].
package main package main

@ -21,7 +21,7 @@ import (
"text/template" "text/template"
) )
var goVersions = []string{"go1.23.6", "go1.24rc3"} var goVersions = []string{"go1.23.6", "go1.24.0"}
var tmplTables = template.Must(template.New("").Parse(` var tmplTables = template.Must(template.New("").Parse(`
// Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT. // Code generated by scripts/gen_go_std_tables.go; DO NOT EDIT.

Loading…
Cancel
Save