-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SIANXSVC-1225: go through all steps, even the previous failed
- Loading branch information
1 parent
43c571c
commit 581d596
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,16 +23,16 @@ jobs: | |
- name: Clean | ||
run: | | ||
xcodebuild clean -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -destination 'generic/platform=iOS' | ||
- name: Testing App | ||
run: | | ||
xcodebuild test -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -destination platform=iOS Simulator,OS=17.2,name=iPhone 15 Pro Max | xcpretty | ||
- name: Build | ||
- name: Build for Testing | ||
if: always() | ||
run: | | ||
xcodebuild build-for-testing -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -sdk iphonesimulator | ||
- name: Run Tests | ||
if: always() | ||
run: | | ||
xcodebuild test-without-building -project ./TwoFas/${{env.PROJECT_NAME}}.xcodeproj -scheme ${{env.SCHEME}} -sdk iphonesimulator -destination 'platform=iOS Simulator,OS=17.2,name=iPhone 15 Pro Max' | ||
- name: Build/Release | ||
if: always() | ||
uses: hectorguerrini/[email protected] | ||
|
||
|