Bump to Xcode 14.3 and swift 5.8 #1171
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: Tests | |
on: [pull_request, workflow_dispatch] | |
concurrency: | |
group: tests-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
unit_test_job: | |
name: Unit | |
runs-on: macOS-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Use Xcode 14 | |
run: sudo xcode-select -switch /Applications/Xcode_14.3.1.app | |
- name: Install Dependencies | |
run: bundle install | |
- name: Run Unit Tests | |
run: bundle exec fastlane unit_tests |