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 62cb6ba commit 1a88597Copy full SHA for 1a88597
.github/workflows/swift.yml
@@ -16,7 +16,17 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v4
19
- - name: Build
20
- run: swift build -v
+ - name: Build for iOS Simulator
+ run: |
21
+ xcodebuild build \
22
+ -scheme gitdiff \
23
+ -sdk iphonesimulator \
24
+ -destination 'platform=iOS Simulator,name=iPhone 15' \
25
+ | xcpretty --simple --color
26
- name: Run tests
- run: swift test -v
27
28
+ xcodebuild test \
29
30
31
32
0 commit comments