Skip to content

Commit

Permalink
Do not build wheels on every PR
Browse files Browse the repository at this point in the history
  • Loading branch information
Luthaf committed Nov 29, 2024
1 parent a89bbd6 commit 2161b80
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ on:
branches: [main]
tags: ["*"]
pull_request:
# Check all PR
paths:
# build wheels in PR if this file changed
- '.github/workflows/build-wheels.yml'
# build wheels in PR if any of the build system files changed
- '**/VERSION'
- '**/setup.py'
- '**/pyproject.toml'
- '**/MANIFEST.in'
- '**/Cargo.toml'
- '**/CMakeLists.txt'
- '**/build.rs'

concurrency:
group: wheels-${{ github.ref }}
Expand Down

0 comments on commit 2161b80

Please sign in to comment.