We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2afcd58 commit 947c460Copy full SHA for 947c460
1 file changed
.github/workflows/main.yml
@@ -1,15 +1,19 @@
1
name: Py 3.10, 3.11, 3.12 | Windows Mac Linux
2
3
on:
4
- push:
+ pull_request:
5
branches:
6
- main
7
- develop
8
- pull_request:
+ push:
9
10
11
12
13
+concurrency:
14
+ group: ${{ github.event.pull_request.number }} # Use the pull request number as the concurrency group
15
+ cancel-in-progress: true # Cancel any in-progress jobs for the same group
16
+
17
jobs:
18
set-os:
19
runs-on: ubuntu-latest
0 commit comments