Merge pull request #37 from SW-Marastro/feature/HomeDesign #90
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: iOS feature unitTest workflow | |
on: | |
push: | |
branches: [ feature/* ] | |
pull_request: | |
branches: [ feature/* ] | |
workflow_dispatch : | |
jobs: | |
build: | |
runs-on : macos-latest | |
steps: | |
- uses : actions/checkout@v3 | |
- name : install CocoaPods | |
run: | | |
cd MyKkumi | |
pod install | |
- name : Build Xcode | |
run: | | |
xcodebuild clean test -workspace MyKkumi/MyKkumi.xcworkspace \ | |
-scheme MyKkumi \ | |
-destination 'platform=iOS Simulator,name=iPhone 15,OS=latest' | |