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 6bb20fc commit 83b2794Copy full SHA for 83b2794
.github/workflows/workspace.yml
@@ -16,6 +16,12 @@ env:
16
RUSTFLAGS: "-Dwarnings"
17
RUSTDOCFLAGS: "-Dwarnings"
18
19
+# If new code is pushed to a PR branch, then cancel in progress workflows for that PR. Ensures that
20
+# we don't waste CI time, and returns results quicker https://github.com/jonhoo/rust-ci-conf/pull/5
21
+concurrency:
22
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
23
+ cancel-in-progress: true
24
+
25
jobs:
26
clippy:
27
runs-on: ubuntu-latest
0 commit comments