IOS-651 Add FriendlyError protocol #40
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: Unit Tests | |
on: | |
pull_request: | |
jobs: | |
build-and-test: | |
runs-on: macOS-latest | |
steps: | |
- name: Force latest Xcode #currently 13.2.1 cos 13.3.1 still in beta at github; once ready for prod the Xcode.app symlink will automatically select it | |
run: ls -la /Applications && sudo xcode-select -switch /Applications/Xcode.app | |
- name: Print System Architecture | |
run: uname -a && xcode-select -p | |
- name: Checkout main repo and submodules | |
uses: actions/checkout@v2 | |
- name: Run SPM Unit Tests | |
run: swift test |