[795] Prospective fix for audio engine crash #32
Workflow file for this run
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: On pull request | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
on_pull_request: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install SSH key | |
uses: shimataro/ssh-key-action@v2 | |
with: | |
key: ${{ secrets.FASTLANE_MATCH_GIT_PRIVATE_KEY }} | |
known_hosts: ${{ secrets.MATCH_SSH_KNOWN_HOSTS }} | |
name: id_rsa_match | |
if_key_exists: replace | |
- name: Set up Ruby environment | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.0 | |
- name: Install Bundler + Dependencies | |
run: rm -rf ~/.gems & gem install bundler & bundle install | |
- name: Install SwiftLint | |
run: brew install swiftlint | |
- name: Run Unit and UI tests | |
uses: ./.github/workflows/actions/run_lane | |
with: | |
lane: test_unit_ui | |
match_password: ${{ secrets.MATCH_PASSWORD }} |