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 6b9aff6 commit 442ca72Copy full SHA for 442ca72
.github/workflows/test.yml
@@ -190,9 +190,13 @@ jobs:
190
shell: bash
191
run: |
192
test $(find wheelhouse -name '*.whl' | wc -l) -ge 1
193
- test $(find wheelhouse_only -name '*.whl' | wc -l) -eq 1
194
test $(find wheelhouse_config_file -name '*.whl' | wc -l) -eq 1
195
+ - name: Check Action artifacts (native build only)
196
+ if: matrix.platform == ''
197
+ run: |
198
+ test $(find wheelhouse_only -name '*.whl' | wc -l) -eq 1
199
+
200
- uses: actions/upload-artifact@v4
201
with:
202
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
0 commit comments