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 5ecca59 commit 1b5e844Copy full SHA for 1b5e844
.github/workflows/cibuildwheel.yml
@@ -53,6 +53,8 @@ jobs:
53
run: pytest tests -vv
54
55
build_wheels:
56
+ # Skip wheel builds on PRs - only build on main branch and tags
57
+ if: github.event_name != 'pull_request'
58
name: Build wheels on ${{ matrix.os }}
59
runs-on: ${{ matrix.os }}
60
timeout-minutes: 90
@@ -342,6 +344,8 @@ jobs:
342
344
overwrite: true
343
345
346
build_sdist:
347
+ # Skip sdist builds on PRs - only build on main branch and tags
348
349
name: Build source distribution
350
runs-on: ubuntu-latest
351
steps:
0 commit comments