From 96c2e05bdf0a18e6bf5055780ca6acb4423d4876 Mon Sep 17 00:00:00 2001 From: Tina Liu Date: Thu, 23 Oct 2025 16:23:47 -0700 Subject: [PATCH] Update PR workflow Update the PR workflow to match that of swift-foundation: - Add WASM SDK test - Only run on nightly Also enable linked PR test --- .github/workflows/pull_request.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a9fc055..e27abc8 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -10,13 +10,16 @@ jobs: uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main with: linux_build_command: "swift build" - linux_exclude_swift_versions: '[{"swift_version": "5.8"}, {"swift_version": "5.9"}, {"swift_version": "5.10"}]' + linux_swift_versions: '["nightly-main"]' windows_build_command: "Invoke-Program swift build" - windows_exclude_swift_versions: '[{"swift_version": "5.9"}, {"swift_version": "5.10"}]' + windows_swift_versions: '["nightly-main"]' enable_macos_checks: true macos_xcode_versions: '["16.3"]' macos_build_command: "xcrun swift build" macos_versions: '["sequoia"]' + enable_wasm_sdk_build: true + wasm_sdk_versions: '["nightly-main"]' + enable_cross_pr_testing: true soundness: name: Soundness uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main