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