Skip to content

Added macOS support & example (#79) #228

Added macOS support & example (#79)

Added macOS support & example (#79) #228

Workflow file for this run

name: validate
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
unit-tests:
runs-on: blaze/macos-14
strategy:
matrix:
destination: ["platform=iOS Simulator,name=iPhone 15 Pro"]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Run Tests
run: |-
xcodebuild test -scheme SwiftAudioEx -destination "${destination}" -enableCodeCoverage YES
env:
destination: ${{ matrix.destination }}