Skip to content

Commit

Permalink
Use a matrix to select versions of macOS to run on
Browse files Browse the repository at this point in the history
  • Loading branch information
danielctull committed Nov 29, 2024
1 parent 9be5d4a commit 325eef4
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,13 @@ jobs:
run: swift test -v -c debug

macos:
name: macOS
runs-on: macos-15
strategy:
fail-fast: false
matrix:
image:
- "15"
name: macOS ${{ matrix.image }}
runs-on: macos-${{ matrix.image }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 325eef4

Please sign in to comment.