Skip to content

Fix typo in ToggleManager+Overrides #116

Fix typo in ToggleManager+Overrides

Fix typo in ToggleManager+Overrides #116

name: ToggleCipher
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
test:
name: Run tests for ${{ matrix.destination }}
runs-on: ${{ matrix.macos }}
strategy:
fail-fast: false
matrix:
macos: ['macos-12']
xcode: ['14.0.1']
command: ['test']
scheme: ['ToggleCipher']
destination: ['platform=macOS']
steps:
- name: Switch xcode to ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer
- name: Show macOS version (${{ matrix.macos }})
run: sw_vers
- name: Code Checkout
uses: actions/checkout@v2
- name: Check xcodebuild version
run: xcodebuild -version
- name: Check xcode embedded SDKs
run: xcodebuild -showsdks
- name: Show buildable schemes
working-directory: ./ToggleCipher
run: xcodebuild -list
- name: Show eligible build destinations for ${{ matrix.scheme }}
working-directory: ./ToggleCipher
run: xcodebuild -showdestinations -scheme ${{ matrix.scheme }}
- name: Run tests for destination ${{ matrix.destination }}
working-directory: ./ToggleCipher
run: xcodebuild ${{ matrix.command }} -scheme ${{ matrix.scheme }} -destination "${{ matrix.destination }}"