We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6428d81 commit 987bf02Copy full SHA for 987bf02
2 files changed
.github/workflows/ci.yml
@@ -1,5 +1,8 @@
1
name: ci
2
on: [push, pull_request]
3
+concurrency: # https://stackoverflow.com/questions/66335225#comment133398800_72408109
4
+ group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
5
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
6
jobs:
7
ci:
8
strategy:
.github/workflows/wheels.yml
@@ -8,8 +8,11 @@ on:
types: [released, prereleased]
9
workflow_dispatch: # allows running workflow manually from the Actions tab
10
11
-jobs:
12
13
14
15
+jobs:
16
build-sdist:
17
runs-on: ubuntu-latest
18
0 commit comments