Merge pull request #77 from hoopes/add-analysis-mode-to-amplitude-view #47
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 | |
uses: AudioKit/ci/.github/workflows/swift_test.yml@main | |
with: | |
scheme: AudioKitUI | |
platforms: iOS macOS | |
swift-versions: 5.7 | |
# Send notification to Discord on failure. | |
send_notification: | |
name: Send Notification | |
uses: AudioKit/ci/.github/workflows/send_notification.yml@main | |
needs: [swift_test] | |
if: ${{ failure() && github.ref == 'refs/heads/main' }} | |
secrets: inherit |