Created
October 23, 2020 14:43
-
-
Save MathVasc/3b5f4deddadcac546e3050e7fc12edf2 to your computer and use it in GitHub Desktop.
coverage report
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
# ... | |
jobs: | |
build: | |
# ... | |
test: | |
# ... | |
- name: Test | |
run: | | |
set -o pipefail | |
xcodebuild test-without-building \ | |
-scheme iOSGitHubActions \ | |
-destination 'platform=iOS Simulator,name=iPhone 11 Pro' \ | |
-derivedDataPath build \ | |
-enableCodeCoverage YES \ | |
| xcpretty | |
- name: Coverage report | |
run: slather coverage -x --binary-basename 'iOSGitHubActions' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment