diff --git a/.github/workflows/swift.yml b/.github/workflows/swift.yml index 21ae770..a6c7557 100644 --- a/.github/workflows/swift.yml +++ b/.github/workflows/swift.yml @@ -10,13 +10,19 @@ on: branches: [ "main" ] jobs: - build: + deploy: - runs-on: macos-latest + runs-on: macos-13-xlarge steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v3 + + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: '14.3' + - name: Build - run: swift build -v + run: swift build + - name: Run tests - run: swift test -v + run: swift test