Xcode 15.3 #191
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: Swift | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-11 | |
strategy: | |
matrix: | |
xcode-version: | |
- /Applications/Xcode_13.1.app | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Force Xcode ${{ matrix.xcode-version }} | |
run: if [ "default" != "${{ matrix.xcode-version }}" ]; then sudo xcode-select -s "${{ matrix.xcode-version }}"; fi | |
- name: Run tests | |
run: xcodebuild -workspace app/src/Outlander.xcworkspace -scheme Outlander clean test CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO |