Compare commits

...
2 Commits
Author SHA1 Message Date
omgitsalexl da8f81be84 Specified container for Docker
Swift Testing / macOS (push) Failing after 13s
Swift Testing / Ubuntu (push) Failing after 39s
Swift Testing / Windows (push) Failing after 58s
2026-08-24 08:58:22 -07:00
omgitsalexl a450b51b7b Properly added testing product 2026-08-24 08:58:12 -07:00
2 changed files with 6 additions and 4 deletions
+3 -1
View File
@@ -29,7 +29,9 @@ jobs:
ubuntu:
name: Ubuntu
runs-on: ubuntu-24.04:docker://swift:6.3.3
runs-on: ubuntu-24.04
container:
image: swift:6.3.3
steps:
- name: Checkout
+3 -3
View File
@@ -20,9 +20,9 @@ let package = Package(
.testTarget(
name: "SwiftRunnerTestingTests",
dependencies: [
"swift-testing",
"SwiftRunnerTesting"
]
"SwiftRunnerTesting",
.product(name: "Testing", package: "swift-testing")
],
),
],
swiftLanguageModes: [.v6]