Skip to content

Try to fix CI (#38) #92

Try to fix CI (#38)

Try to fix CI (#38) #92

Workflow file for this run

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 Flow
uses: actions/checkout@v4
- name: Test Flow
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 Flow
uses: actions/checkout@v4
- name: Build Demo
run: xcodebuild build -project Demo/FlowDemo.xcodeproj -scheme FlowDemo -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