Commit 8e7a3c9 1 parent 8006cfb commit 8e7a3c9 Copy full SHA for 8e7a3c9
File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,13 @@ jobs:
105
105
steps :
106
106
- name : Check out code
107
107
uses : actions/checkout@v4
108
+ - name : Check Swift compatibility
109
+ id : swift-check
110
+ uses : vapor/ci/.github/actions/check-compatible-swift@main
111
+ with :
112
+ package_root : ${{ inputs.package_root }}
108
113
- name : Run unit tests
114
+ if : ${{ steps.swift-check.outputs.swift-compatible == 'true' }}
109
115
run : |
110
116
SWIFT_DETERMINISTIC_HASHING=1 \
111
117
swift test \
@@ -141,7 +147,13 @@ jobs:
141
147
xcode-version : ${{ matrix.xcode-version }}
142
148
- name : Check out code
143
149
uses : actions/checkout@v4
150
+ - name : Check Swift compatibility
151
+ id : swift-check
152
+ uses : vapor/ci/.github/actions/check-compatible-swift@main
153
+ with :
154
+ package_root : ${{ inputs.package_root }}
144
155
- name : Run unit tests
156
+ if : ${{ steps.swift-check.outputs.swift-compatible == 'true' }}
145
157
run : |
146
158
SWIFT_DETERMINISTIC_HASHING=1 \
147
159
swift test \
You can’t perform that action at this time.
0 commit comments