From c217a301716ba96335157b20ba8902ab680fd038 Mon Sep 17 00:00:00 2001 From: Aaron Sky Date: Sun, 18 Jun 2023 10:44:00 -0400 Subject: [PATCH] do this instead for linux --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6897a9..8aa243e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,14 +15,18 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run tests run: make test-library-xcode library-linux: runs-on: ubuntu-latest + container: + image: swift:5.7 steps: - - uses: actions/checkout@v1.0.0 + - uses: actions/checkout@v3 + - name: Install make + run: apt update && apt install make -y - name: Run tests run: make test-library @@ -31,6 +35,6 @@ jobs: env: DEVELOPER_DIR: /Applications/Xcode_14.2.app/Contents/Developer steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Run tests run: make build-examples