Skip to content

chore(ci): update workflow step versions #252

chore(ci): update workflow step versions

chore(ci): update workflow step versions #252

Workflow file for this run

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 }}