Last active
October 23, 2020 14:45
-
-
Save MathVasc/85e36d86589743b65c868bd060305b1c to your computer and use it in GitHub Desktop.
downloadArtifact
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 Project | |
needs: build | |
runs-on: macOS-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Download derived data artifact | |
uses: actions/download-artifact@v1 | |
with: | |
name: build | |
# ... | |
- name: Test | |
run: | | |
set -o pipefail | |
xcodebuild test-without-building \ | |
-scheme iOSGitHubActions \ | |
-destination 'platform=iOS Simulator,name=iPhone 11 Pro' \ | |
-derivedDataPath build \ | |
| xcpretty |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment