feat(App): remove forward slashes in TCA reducers #176
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: Xcode Unit Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macOS-12 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_14.2.app | |
- name: Xcode version | |
run: /usr/bin/xcodebuild -version | |
- name: List available devices | |
run: xcrun simctl list | |
- name: Xcode test on specific device | |
working-directory: ./MixTeam | |
run: xcodebuild clean test -scheme MixTeam -destination 'platform=iOS Simulator,name=iPhone SE (2nd generation)' |