Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
havebeenfitz committed Mar 5, 2023
1 parent 6a687ae commit 424adcf
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/swift.yml
Expand Up @@ -17,6 +17,16 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build
run: swift build -v
run: |
swift build -v \
-Xswiftc "-sdk" \
-Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" \
-Xswiftc "-target" \
-Xswiftc "x86_64-apple-ios13.0-simulator"
- name: Run tests
run: swift test -v
run: |
swift test -v \
-Xswiftc "-sdk" \
-Xswiftc "`xcrun --sdk iphonesimulator --show-sdk-path`" \
-Xswiftc "-target" \
-Xswiftc "x86_64-apple-ios13.0-simulator"

0 comments on commit 424adcf

Please sign in to comment.