We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 48421ff + 372b7cc commit 9dce3e2Copy full SHA for 9dce3e2
.github/workflows/ci.yaml
@@ -5,6 +5,13 @@ on:
5
6
name: CI
7
8
+# Cancel previous workflows if they are the same workflow on same ref (branch/tags)
9
+# with the same event (push/pull_request) even they are in progress.
10
+# This setting will help reduce the number of duplicated workflows.
11
+concurrency:
12
+ group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event_name }}
13
+ cancel-in-progress: true
14
+
15
env:
16
CARGO_ARGS: --features ssl,jit
17
NON_WASM_PACKAGES: >
0 commit comments