Skip to content

Commit

Permalink
Changed matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
carloschida committed Jul 10, 2024
1 parent 1499291 commit 769be07
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,18 @@ jobs:
name: Build and test (Swift ${{ matrix.swift }} on ${{ matrix.os }})
strategy:
matrix:
xcode: [ "14.2", "14.3.1" ]
machine: [ "macos-12", "macos-13" ]
runs-on: ${{ matrix.machine }}
tests:
- xcode: '14.2'
machine: macos-12
- xcode: '14.3.1'
machine: macos-13
runs-on: ${{ matrix.tests.machine }}
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.tests.xcode }}.app

- name: Build and Test SPM
run: swift test --enable-coverage
Expand Down

0 comments on commit 769be07

Please sign in to comment.