Separated from matrix into individual jobs
This commit is contained in:
+21
-12
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user