Separated from matrix into individual jobs
Swift Testing / macOS (push) Failing after 2s
Swift Testing / Windows (push) Failing after 14s
Swift Testing / Ubuntu (push) Canceled after 0s

This commit is contained in:
2026-08-24 07:01:16 -07:00
parent 7e549950fe
commit d92d11c75c
+21 -12
View File
@@ -5,22 +5,31 @@ on:
workflow_dispatch:
jobs:
test:
name: Swift - ${{ matrix.platform }}
macos:
name: macOS
runs-on: macos-26
strategy:
matrix:
include:
- platform: macOS
runner: macos-26:host
steps:
- name: Checkout
uses: actions/checkout@v4
- platform: Windows
runner: windows-11:host
- name: Test
run: swift test
- platform: Linux
runner: ubuntu-24.04:docker://swift:6.3
windows:
name: Windows
runs-on: windows-11
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Test
run: swift test
ubuntu:
name: Ubuntu
runs-on: ubuntu-24.04:docker://swift:6.3.3
steps:
- name: Checkout