Xcode 16 fixes #63
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: Build & Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
SwiftyMocky-Tests: | |
runs-on: macos-11 | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v2 | |
- name: Set Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '13.2.1' | |
- name: Prepare for tests | |
run: | | |
rake pods | |
rake mock | |
- name: Run tests iOS | |
run: | | |
fastlane ios test | |
- name: Run tests tvOS | |
run: | | |
fastlane tvos test | |
- name: Run tests SwiftPM | |
run: | | |
swift test |