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 0dbdd0d commit 69f2febCopy full SHA for 69f2feb
.github/workflows/test.yml
@@ -13,6 +13,13 @@ on:
13
- "conda-envs/**"
14
- "codecov.yml"
15
16
+# Cancels all previous workflow runs for pull requests that have not completed.
17
+concurrency:
18
+ # The concurrency group contains the workflow name and the branch name for pull requests
19
+ # or the commit hash for any other events.
20
+ group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
21
+ cancel-in-progress: true
22
+
23
jobs:
24
ubuntu:
25
strategy:
0 commit comments