Skip to content

fix(notification): update rate in notification when rate changes #194

fix(notification): update rate in notification when rate changes

fix(notification): update rate in notification when rate changes #194

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: macos-latest
strategy:
matrix:
destination:
[
'platform=iOS Simulator,name=iPhone 12 Pro',
]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Run Tests
run: |-
cd Example
xcodebuild test -scheme SwiftAudio-Example -destination "${destination}" -enableCodeCoverage YES
env:
destination: ${{ matrix.destination }}