We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29c092f commit c875d5aCopy full SHA for c875d5a
.github/workflows/ci.yml
@@ -9,9 +9,17 @@ jobs:
9
buildAndTest:
10
name: build and test
11
runs-on: macos-latest
12
+ strategy:
13
+ matrix:
14
+ workspace: [".swiftpm/xcode/package.xcworkspace"]
15
+ scheme: ["PassLibrary"]
16
+ destination: ["platform=iOS Simulator,name=iPhone 11 Pro Max"]
17
steps:
18
- uses: actions/checkout@v1
19
- name: Build and Test
20
run: |
- "ls"
- "sh Scripts/Tests/run.sh"
21
+ set -o pipefail && xcodebuild test -workspace "${workspace}" -scheme "${scheme}" -destination "${destination}" | xcpretty
22
+ env:
23
+ destination: ${{ matrix.destination }}
24
+ scheme: ${{ matrix.scheme }}
25
+ project: ${{ matrix.project }}
0 commit comments