Try to make CI work a la Flow #21
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: Tests | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
swift_test: | |
name: Test | |
runs-on: macos-latest | |
steps: | |
- name: Check out Controls | |
uses: actions/checkout@v4 | |
- name: Test Controls | |
run: swift test -c release | |
# Build the demo projects. | |
build_demo: | |
name: Build Demo | |
runs-on: macos-latest | |
needs: [swift_test] | |
steps: | |
- name: Check out Controls | |
uses: actions/checkout@v4 | |
- name: Build Demo | |
run: xcodebuild build -project Demo/ControlsDemo.xcodeproj -scheme ControlsDemo -destination "name=My Mac" | |
# Send notification to Discord on failure. | |
send_notification: | |
name: Send Notification | |
uses: AudioKit/ci/.github/workflows/send_notification.yml@main | |
needs: [swift_test, build_demo] | |
if: ${{ failure() && github.ref == 'refs/heads/main' }} | |
secrets: inherit |