Compare commits

...
4 Commits
Author SHA1 Message Date
omgitsalexl 411c79e8b5 Specified platform version
Swift Testing / Windows (push) Successful in 6m55s
Swift Testing / Ubuntu (push) Successful in 1m13s
Swift Testing / macOS (push) Successful in 1m15s
2026-08-24 10:16:40 -07:00
omgitsalexl 8067bdf45d Updated Docker container 2026-08-24 10:16:01 -07:00
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 10 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: git.omgitsalexl.me/omgitsalexl/ci-swift:6.3.3
steps:
- name: Checkout
+7 -3
View File
@@ -4,7 +4,11 @@
import PackageDescription
let package = Package(
name: "SwiftRunnerTesting",
platforms: [
.macOS(.v14)
],
products: [
.executable(name: "SwiftRunnerTesting", targets: ["SwiftRunnerTesting"]),
],
@@ -20,9 +24,9 @@ let package = Package(
.testTarget(
name: "SwiftRunnerTestingTests",
dependencies: [
"swift-testing",
"SwiftRunnerTesting"
]
"SwiftRunnerTesting",
.product(name: "Testing", package: "swift-testing")
],
),
],
swiftLanguageModes: [.v6]