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 b908695 commit c764289Copy full SHA for c764289
.github/workflows/test.yml
@@ -19,5 +19,14 @@ jobs:
19
with:
20
xcode-version: '15.4'
21
22
- - name: Build for iOS
23
- run: swift build -Xswiftc "-sdk" -Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" -Xswiftc "-target" -Xswiftc "x86_64-apple-ios12.0-simulator"
+ - name: Build and Test for iOS
+ run: |
24
+ # Build for iPhone Simulator using xcodebuild with Swift package
25
+ xcodebuild -scheme FDWaveformView \
26
+ -destination "platform=iOS Simulator,name=iPhone 15,OS=17.5" \
27
+ clean build
28
+
29
+ # Run tests on iPhone Simulator
30
31
32
+ test
0 commit comments