From d92d11c75cc6c0f97c16623bbef58033fb77cbb1 Mon Sep 17 00:00:00 2001 From: Alexander Loren Date: Mon, 24 Aug 2026 07:01:16 -0700 Subject: [PATCH] Separated from matrix into individual jobs --- .gitea/workflows/test.yml | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 5099f27..7b2be81 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -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