File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Format
22
33on : [push, pull_request]
44
5+ concurrency :
6+ group : ${{ github.ref }}-${{ github.workflow }}
7+ cancel-in-progress : true
8+
59jobs :
610
711 format :
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ name: Lint
22
33on : [push, pull_request]
44
5+ concurrency :
6+ group : ${{ github.ref }}-${{ github.workflow }}
7+ cancel-in-progress : true
8+
59jobs :
610
711 lint :
Original file line number Diff line number Diff line change 11name : Test
22
3- on : [push, pull_request]
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ - cron : ' 24 4 3 * *' # 4:24a on third day of the month
8+
9+ concurrency :
10+ group : ${{ github.ref }}-${{ github.workflow }}
11+ cancel-in-progress : true
412
513jobs :
614 build-test-unix :
You can’t perform that action at this time.
0 commit comments