Skip to content

Try to fix CI

Try to fix CI #89

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 ${{ matrix.scheme }} (Xcode ${{ matrix.xcode_version }})
# NOTE: macos-latest is NOT equivalent to macos-12 as of September 2022.
# Source: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
runs-on: macos-13
needs: [swift_test]
strategy:
# Setting 'fail-fast' to 'true' implies the build will fail the first time it encounters an error.
fail-fast: true
matrix:
scheme:
- FlowDemo (iOS)
- FlowDemo (macOS)
steps:
- name: Build Demo
uses: AudioKit/ci/.github/actions/build-demo@main
with:
project: Demo/FlowDemo.xcodeproj
scheme: ${{ matrix.scheme }}
xcode_version: ${{ matrix.xcode_version }}
# 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