From 2ada7408b5e712d919388cb1516dcddee51a3f3e Mon Sep 17 00:00:00 2001 From: Manuel Lopes Date: Fri, 15 Mar 2024 17:56:17 +0100 Subject: [PATCH] Update test-Linux workflow --- .github/workflows/test-Linux.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test-Linux.yml b/.github/workflows/test-Linux.yml index 12cc243..ac4f547 100644 --- a/.github/workflows/test-Linux.yml +++ b/.github/workflows/test-Linux.yml @@ -11,16 +11,8 @@ jobs: Linux: name: Test Linux runs-on: ubuntu-latest - strategy: - matrix: - swift-version: ["5.5", "5.6"] # Example: test with Swift 5.5 and 5.6 + container: swift:5.8 steps: - - uses: actions/checkout@v4 - - name: Set up Swift - uses: swift-actions/setup-swift@v2 - with: - swift-version: ${{ matrix.swift-version }} - - name: Build and test - run: | - swift build - swift test + - uses: actions/checkout@v3 + - name: Run tests + run: swift test