You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Ideally we'd use a matrix for the platforms, but due to the limitations of Mac runners on GitHub it's probably better to just have a single job with multiple steps
48
-
- name: Test (macOS)
49
-
run: cd packages/swift/${{ env.PACKAGE }} && xcodebuild -scheme ${{ env.PACKAGE }} test -destination "platform=macOS"
50
60
- name: Test (iOS)
51
61
run: cd packages/swift/${{ env.PACKAGE }} && xcodebuild -scheme ${{ env.PACKAGE }} test -destination "platform=iOS Simulator,name=iPhone 16,OS=latest"
62
+
- name: Test (macOS)
63
+
run: cd packages/swift/${{ env.PACKAGE }} && xcodebuild -scheme ${{ env.PACKAGE }} test -destination "platform=macOS"
52
64
- name: Test (Catalyst)
53
65
run: cd packages/swift/${{ env.PACKAGE }} && xcodebuild -scheme ${{ env.PACKAGE }} test -destination "platform=macOS,variant=Mac Catalyst"
54
-
- name: Commit Package
55
-
uses: stefanzweifel/git-auto-commit-action@v5
56
-
if: github.event_name == 'push'
57
-
with:
58
-
commit_message: "Swift CI ${{ env.PACKAGE }} package"
0 commit comments