File tree 5 files changed +35
-6
lines changed
5 files changed +35
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
on :
4
4
push :
5
- branches : [master]
5
+ branches :
6
+ - master
6
7
pull_request :
7
8
branches :
8
9
- master
21
22
run :
22
23
shell : bash -l {0}
23
24
25
+ concurrency :
26
+ group : ${{ github.ref }}-checks
27
+ cancel-in-progress : true
28
+
24
29
steps :
25
30
- name : Checkout
26
31
uses : actions/checkout@v2
94
99
web_and_docs :
95
100
name : Web and docs
96
101
runs-on : ubuntu-latest
97
- steps :
98
102
103
+ concurrency :
104
+ group : ${{ github.ref }}-web-docs
105
+ cancel-in-progress : true
106
+
107
+ steps :
99
108
- name : Checkout
100
109
uses : actions/checkout@v2
101
110
with :
@@ -149,8 +158,11 @@ jobs:
149
158
strategy :
150
159
matrix :
151
160
pattern : ["not slow and not network and not clipboard", "slow"]
152
- steps :
161
+ concurrency :
162
+ group : ${{ github.ref }}-data_manager-${{ matrix.pattern }}
163
+ cancel-in-progress : true
153
164
165
+ steps :
154
166
- name : Checkout
155
167
uses : actions/checkout@v2
156
168
with :
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Database
2
2
3
3
on :
4
4
push :
5
- branches : [master]
5
+ branches :
6
+ - master
6
7
pull_request :
7
8
branches :
8
9
- master
29
30
ENV_FILE : [ci/deps/actions-37-db-min.yaml, ci/deps/actions-37-db.yaml]
30
31
fail-fast : false
31
32
33
+ concurrency :
34
+ group : ${{ github.ref }}-${{ matrix.ENV_FILE }}
35
+ cancel-in-progress : true
36
+
32
37
services :
33
38
mysql :
34
39
image : mysql
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Posix
2
2
3
3
on :
4
4
push :
5
- branches : [master]
5
+ branches :
6
+ - master
6
7
pull_request :
7
8
branches :
8
9
- master
44
45
LC_ALL : ${{ matrix.settings[4] }}
45
46
PANDAS_TESTING_MODE : ${{ matrix.settings[5] }}
46
47
TEST_ARGS : ${{ matrix.settings[6] }}
48
+ concurrency :
49
+ group : ${{ github.ref }}-${{ matrix.settings[0] }}
50
+ cancel-in-progress : true
47
51
48
52
steps :
49
53
- name : Checkout
Original file line number Diff line number Diff line change @@ -3,11 +3,15 @@ name: pre-commit
3
3
on :
4
4
pull_request :
5
5
push :
6
- branches : [master]
6
+ branches :
7
+ - master
7
8
8
9
jobs :
9
10
pre-commit :
10
11
runs-on : ubuntu-latest
12
+ concurrency :
13
+ group : ${{ github.ref }}-pre-commit
14
+ cancel-in-progress : true
11
15
steps :
12
16
- uses : actions/checkout@v2
13
17
- uses : actions/setup-python@v2
Original file line number Diff line number Diff line change 16
16
name : actions-310-dev
17
17
timeout-minutes : 60
18
18
19
+ concurrency :
20
+ group : ${{ github.ref }}-dev
21
+ cancel-in-progress : true
22
+
19
23
steps :
20
24
- uses : actions/checkout@v2
21
25
with :
You can’t perform that action at this time.
0 commit comments