We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91985fb commit ad406bdCopy full SHA for ad406bd
.github/workflows/ci.yml
@@ -46,9 +46,9 @@ jobs:
46
- run: swift build -Xswiftc -warnings-as-errors -Xswiftc -swift-version -Xswiftc 4.2
47
if: ${{ matrix.swift < 6 && matrix.swift >= 4.2 }}
48
- run: swift test --enable-code-coverage --parallel
49
- if: ${{ matrix.swift >= 4.2 }}
+ if: ${{ matrix.swift > 4.2 }}
50
- run: swift test --parallel
51
- if: ${{ matrix.swift < 4.2 }}
+ if: ${{ matrix.swift <= 4.2 }}
52
53
- name: Generate Coverage Report
54
if: ${{ matrix.swift < 5.4 }} # fails for SOME REASON
@@ -78,6 +78,7 @@ jobs:
78
- iOS
79
# - mac-catalyst
80
# - visionOS
81
+ # ^^ both are unavailable in the github-hosted runners
82
steps:
83
- uses: actions/checkout@v4
84
- uses: mxcl/xcodebuild@v3
0 commit comments