File tree Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Expand file tree Collapse file tree 3 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 7
7
- cron : ' 0 12 * * *'
8
8
workflow_dispatch :
9
9
10
+ concurrency :
11
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress : true
13
+
10
14
jobs :
11
15
ubuntu-gcc-build :
12
16
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Static analysis
2
2
3
3
on : [pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
clang-tidy :
7
11
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Static analysis
2
2
3
3
on : [push, pull_request]
4
4
5
+ concurrency :
6
+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
7
+ cancel-in-progress : true
8
+
5
9
jobs :
6
10
clang-format :
7
11
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments