Skip to content

Commit 9005f52

Browse files
committed
fix(ci): Run build_wheels on pull requests
1 parent e2cefcc commit 9005f52

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
needs: [generate_matrix]
6565
name: Build wheels on ${{ matrix.os }}
6666
runs-on: ${{ matrix.os }}
67-
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
67+
if: github.event_name == 'pull_request' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v')
6868
strategy:
6969
matrix:
7070
os: ${{ fromJson(needs.generate_matrix.outputs.OSES) }}

0 commit comments

Comments
 (0)