From fb2504efcbe5440102b94a6bf567424d9e5b9db7 Mon Sep 17 00:00:00 2001 From: Liam Nichols Date: Tue, 2 Aug 2022 22:44:56 +0200 Subject: [PATCH] Add CI workflows for testing Linux (#3) --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1527ace..a12d1d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,3 +28,17 @@ jobs: uses: actions/checkout@v3 - name: Run Tests run: swift test + linux: + name: Linux (Swift ${{ matrix.swift }}) + strategy: + fail-fast: false + matrix: + swift: ["5.5", "5.6"] + runs-on: ubuntu-latest + container: swift:${{ matrix.swift }} + steps: + - name: Checkout Repo + uses: actions/checkout@v3 + - name: Run Tests + run: swift test +