ci: bump to go 1.23 (#453)

Upgrade to Go 1.23.

Upgrade also requires bumping `golangci-lint` to v1.62.2, and upgrading
third-party test versions for some failing cases.
This commit is contained in:
Michael McLoughlin
2024-12-22 19:01:48 -05:00
committed by GitHub
parent 3b84ecd27b
commit b985ff5775
31 changed files with 88 additions and 100 deletions

View File

@@ -7,7 +7,7 @@ import (
//go:generate go run asm.go -out issue387.s -stubs stub.go
func TestFloat32(t *testing.T) {
for i := 0; i < 10; i++ {
for i := range 10 {
got := Float32(i)
expect := float32(i)
if got != expect {
@@ -17,7 +17,7 @@ func TestFloat32(t *testing.T) {
}
func TestFloat64(t *testing.T) {
for i := 0; i < 10; i++ {
for i := range 10 {
got := Float64(i)
expect := float64(i)
if got != expect {