Skip to content

Commit 25bd9c4

Browse files
committed
Working
1 parent 437a781 commit 25bd9c4

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@ jobs:
88
tests:
99
name: Test
1010
uses: swiftlang/github-workflows/.github/workflows/swift_package_test.yml@main
11+
with:
12+
linux_exclude_swift_versions: '[{"swift_version": "5.9"}, {"swift_version": "5.10"}]'
13+
windows_exclude_swift_versions: '[{"swift_version": "5.9"}]'
14+
enable_macos_checks: true
15+
macos_exclude_xcode_versions: '[{"xcode_version": "16.0"}, {"xcode_version": "16.1"}]'
1116
soundness:
1217
name: Soundness
1318
uses: swiftlang/github-workflows/.github/workflows/soundness.yml@main
1419
with:
1520
license_header_check_project_name: "Swift.org"
21+
unacceptable_language_check_enabled: false
22+

Sources/TestSupport/TestSupport.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import XCTest
1515
// *without* `-disable-availability-checking` to ensure the #available check is
1616
// not compiled into a no-op.
1717

18-
#if os(Linux) || os(Android)
18+
#if os(Linux) || os(Android) || os(Windows)
1919
public func XCTExpectFailure(
2020
_ message: String? = nil, body: () throws -> Void
2121
) rethrows {}

0 commit comments

Comments
 (0)