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 1e9dc5c commit fd3da42Copy full SHA for fd3da42
.github/workflows/build.yml
@@ -1,6 +1,14 @@
1
name: Tests
2
3
-on: [push]
+on:
4
+ # Trigger the workflow on push or pull request,
5
+ # but only for the main branch
6
+ push:
7
+ branches:
8
+ - '**' # this matches all branches
9
+ pull_request:
10
11
+ - main
12
13
jobs:
14
build_wheels:
.github/workflows/cibuildwheels.yml
@@ -1,7 +1,7 @@
name: Python wheels
+
on:
- # Trigger the workflow on push or pull request,
- # but only for the main branch
+ # Trigger the workflow only for tags and PRs to the main branch
push:
tags:
- '*'
0 commit comments