From dc945048f95fb42add7cb9e2b1ec6a0aec4537bd Mon Sep 17 00:00:00 2001 From: Jay Herron Date: Tue, 27 Dec 2022 15:32:23 -0800 Subject: [PATCH] WIP: Fix macos CI See issue: https://github.com/swift-actions/setup-swift/issues/406 --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1cd3b18..6643e75 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,14 +7,17 @@ jobs: darwin-test: runs-on: macos-latest steps: - - uses: fwal/setup-swift@v1 + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest - uses: actions/checkout@v2 - name: Darwin build & test run: swift test --skip IntegrationTests linux-build: runs-on: ubuntu-latest + container: + image: swift:latest steps: - - uses: fwal/setup-swift@v1 - uses: actions/checkout@v2 - name: Linux build run: swift build --target HaystackClientNIO