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 80cea76 commit 3483bb5Copy full SHA for 3483bb5
.github/workflows/build.yml
@@ -10,6 +10,14 @@ on:
10
branches:
11
- master
12
13
+concurrency:
14
+ group: build-${{ github.head_ref }}
15
+ cancel-in-progress: true
16
+
17
+env:
18
+ CIBW_SKIP: >
19
+ pp*
20
21
jobs:
22
binary-wheels-standard:
23
name: Binary wheels for ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }}
@@ -67,6 +75,7 @@ jobs:
67
75
github.event_name == 'push'
68
76
&&
69
77
(github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags'))
78
70
79
steps:
71
80
- uses: actions/checkout@v2
72
81
with:
0 commit comments