chore(ci): update workflow step versions #252
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: validate | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-tests: | |
runs-on: blaze/macos-14 | |
strategy: | |
matrix: | |
target: [macos, iOS] | |
include: | |
- target: iOS | |
destination: '-destination "platform=iOS Simulator,name=iPhone 15 Pro"' | |
- target: macos | |
destination: '-destination "platform=macOS,name=Any Mac"' | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Run Tests | |
if: matrix.target == 'macos' # Skip iOS until we can get them to run reliably | |
run: xcodebuild test -scheme SwiftAudioEx ${{ matrix.destination }} -enableCodeCoverage YES | |
- name: Upload coverage to Codecov | |
if: matrix.target == 'macos' | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |