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: workflow_dispatch:
jobs: jobs:
test: macos:
name: Swift - ${{ matrix.platform }} name: macOS
runs-on: macos-26
strategy: steps:
matrix: - name: Checkout
include: uses: actions/checkout@v4
- platform: macOS
runner: macos-26:host
- platform: Windows - name: Test
runner: windows-11:host run: swift test
- platform: Linux windows:
runner: ubuntu-24.04:docker://swift:6.3 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: steps:
- name: Checkout - name: Checkout