Skip to content

Commit

Permalink
[162] fix test command
Browse files Browse the repository at this point in the history
  • Loading branch information
akidon0000 committed Mar 14, 2024
1 parent 3d07cf0 commit f3321f5
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,19 @@ jobs:
runs-on: macos-13
steps:
- uses: actions/checkout@v4

- name: Select Xcode
run: sudo xcode-select -s "/Applications/Xcode_15.0.1.app"

- name: CocoaPods
run: pod install
# シミュレーター向けにビルド
# set -o pipefail (エラー発生時終了)
# bundle exec xcpretty --report html (エラー文を整形)

- name: Xcode UnitTest
run: set -o pipefail &&
xcodebuild
-sdk iphonesimulator
-configuration Debug
xcodebuild test
-workspace univIP.xcworkspace
-scheme univIP
-destination 'platform=iOS Simulator,name=iPhone 11 Pro Max'
-sdk iphonesimulator
-destination platform='iOS Simulator,name=iPhone 13 Pro Max'
-skip-testing:univIPUITests
clean test

0 comments on commit f3321f5

Please sign in to comment.