We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 251de18 commit c3be1c7Copy full SHA for c3be1c7
1 file changed
.github/workflows/buildwheels.yml
@@ -177,9 +177,21 @@ jobs:
177
name: cibw-sdist
178
path: dist/*.tar.gz
179
180
+ check_sdist:
181
+ name: Check if source wheels are compilable
182
+ runs-on: ubuntu-latest
183
+ needs: [make_sdist]
184
+ steps:
185
+ - uses: actions/download-artifact@v5
186
+ with:
187
+ pattern: dist-*
188
+ merge-multiple: true
189
+ path: dist
190
+ - run: pip install --no-binary PyPartMC dist/PyPartMC*tar.gz
191
+
192
dist_upload:
193
runs-on: ubuntu-latest
- needs: [build_wheels, make_sdist]
194
+ needs: [build_wheels, check_sdist]
195
environment: pypi
196
permissions:
197
id-token: write
0 commit comments