diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 1601ad3..9f086d4 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -1,6 +1,3 @@ -# This workflow will build a Swift project -# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift - name: Swift on: @@ -11,13 +8,16 @@ on: jobs: build: + runs-on: macos-14 +# Xcode 15.3 not available, abandon this action - runs-on: macos-latest - - steps: - - uses: swift-actions/setup-swift@v2 - with: - swift-version: "5.10.0" - - uses: actions/checkout@v4 - - name: Run tests - run: swift test -v +# steps: +# - uses: maxim-lobanov/setup-xcode@v1 +# with: +# xcode-version: latest-stable +# - uses: swift-actions/setup-swift@v2 +# with: +# swift-version: "5.10.0" +# - uses: actions/checkout@v4 +# - name: Run tests +# run: swift test