feat: Audio Unit plugin support for per-app and per-device effects #69
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build-and-test: | |
| runs-on: macos-26 | |
| timeout-minutes: 15 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Xcode | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: latest-stable | |
| - name: Build | |
| run: | | |
| xcodebuild build \ | |
| -project FineTune.xcodeproj \ | |
| -scheme FineTune \ | |
| -configuration Debug \ | |
| CODE_SIGN_IDENTITY=- \ | |
| CODE_SIGNING_REQUIRED=NO | |
| - name: Test | |
| run: | | |
| xcodebuild test \ | |
| -project FineTune.xcodeproj \ | |
| -scheme FineTune \ | |
| -configuration Debug \ | |
| -skip-testing:FineTuneUITests \ | |
| CODE_SIGN_IDENTITY=- \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| -resultBundlePath build/TestResults.xcresult | |
| - name: Upload test results | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results | |
| path: build/TestResults.xcresult | |
| retention-days: 7 |