Improve VoiceOver and Voice Control experience (#211) #309
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
unit_tests: | |
name: Unit Tests | |
runs-on: macos-13 | |
steps: | |
- name: Set Xcode Version | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '15.2' | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install Gem Dependencies | |
run: bundle install | |
- name: Run UnitTests | |
run: bundle exec fastlane test | |
snapshot_tests: | |
name: Snapshot Tests | |
runs-on: macos-13 | |
steps: | |
- name: Set Xcode Version | |
uses: maxim-lobanov/[email protected] | |
with: | |
xcode-version: '15.2' | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Install Gem Dependencies | |
run: bundle install | |
- name: Run SnapshotTests | |
run: bundle exec fastlane snapshot_test |