diff --git a/.github/workflows/commit.yaml b/.github/workflows/commit.yaml index f3b4922c95..a31fe23115 100644 --- a/.github/workflows/commit.yaml +++ b/.github/workflows/commit.yaml @@ -71,6 +71,7 @@ jobs: - os: macos-14 arch: arm64 go-version: + - "1.23.0-rc.2" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) @@ -112,6 +113,7 @@ jobs: fail-fast: false # don't fail fast as sometimes failures are arch/OS specific matrix: # Use versions consistent with wazero's Go support policy. go-version: + - "1.23.0-rc.2" # Test the pending next version - "1.22" # Current Go version - "1.20" # Floor Go version of wazero (current - 2) arch: diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 395e2d94d5..61c5158e32 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -278,6 +278,7 @@ jobs: go-version: - "1.21" - "1.22" + - "1.23.0-rc.2" # Test the pending next version steps: - id: setup-go diff --git a/internal/integration_test/stdlibs/bench_test.go b/internal/integration_test/stdlibs/bench_test.go index 544cef8f3c..2c5f8634da 100644 --- a/internal/integration_test/stdlibs/bench_test.go +++ b/internal/integration_test/stdlibs/bench_test.go @@ -103,7 +103,7 @@ var ( args = append(args, "-test.skip=TestRenameCaseDifference/dir|"+ "TestDirFSPathsValid|TestDirFS|TestDevNullFile|"+ - "TestOpenError|TestSymlinkWithTrailingSlash") + "TestOpenError|TestSymlinkWithTrailingSlash|TestCopyFS") } c = c.WithArgs(args...)