From 7625f381508b638eeaf052e21546354dc0dcbc75 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Wed, 8 Nov 2023 20:25:37 -0800 Subject: [PATCH] wip --- .github/workflows/ci.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d2d1f2be5..89db844cb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - test # - benchmarks steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Select Xcode ${{ matrix.xcode }} run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app - name: System @@ -29,15 +29,15 @@ jobs: run: make ${{ matrix.command }} ubuntu_tests: + name: Ubuntu (Swift ${{ matrix.swift }}) + runs-on: ubuntu-20.04 strategy: matrix: - os: [ubuntu-20.04] - - runs-on: ${{ matrix.os }} - + swift: + - '5.9' steps: - - uses: actions/checkout@v3 - - name: Build - run: swift build - - name: Run tests - run: swift test + - uses: swift-actions/setup-swift@v1 + with: + swift-version: ${{ matrix.swift }} + - uses: actions/checkout@v4 + - run: swift test