File tree Expand file tree Collapse file tree 3 files changed +23
-12
lines changed Expand file tree Collapse file tree 3 files changed +23
-12
lines changed Original file line number Diff line number Diff line change 1
1
name : Check Release
2
2
on :
3
3
push :
4
- branches : ["master "]
4
+ branches : ["main "]
5
5
pull_request :
6
- branches : ["*"]
7
6
8
7
concurrency :
9
8
group : check-release-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -2,9 +2,8 @@ name: ipykernel tests
2
2
3
3
on :
4
4
push :
5
- branches : " master "
5
+ branches : ["main"]
6
6
pull_request :
7
- branches : " *"
8
7
9
8
concurrency :
10
9
group : ci-${{ github.ref }}
Original file line number Diff line number Diff line change @@ -2,16 +2,15 @@ name: Test downstream projects
2
2
3
3
on :
4
4
push :
5
- branches : " master "
5
+ branches : ["main"]
6
6
pull_request :
7
- branches : " *"
8
7
9
8
concurrency :
10
9
group : downstream-${{ github.ref }}
11
10
cancel-in-progress : true
12
11
13
12
jobs :
14
- downstream1 :
13
+ nbclient :
15
14
runs-on : ubuntu-latest
16
15
17
16
steps :
@@ -21,18 +20,25 @@ jobs:
21
20
- name : Base Setup
22
21
uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23
22
24
- - name : Test nbclient
23
+ - name : Run Test
25
24
uses : jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
26
25
with :
27
26
package_name : nbclient
28
27
env_values : IPYKERNEL_CELL_NAME=\<IPY-INPUT\>
29
28
30
- - name : Test jupyter_client
29
+ jupyter_client :
30
+ - name : Checkout
31
+ uses : actions/checkout@v2
32
+
33
+ - name : Base Setup
34
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
35
+
36
+ - name : Run Test
31
37
uses : jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
32
38
with :
33
39
package_name : jupyter_client
34
40
35
- downstream2 :
41
+ ipyparallel :
36
42
runs-on : ubuntu-latest
37
43
38
44
steps :
@@ -42,12 +48,19 @@ jobs:
42
48
- name : Base Setup
43
49
uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
44
50
45
- - name : Test ipyparallel
51
+ - name : Run Test
46
52
uses : jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
47
53
with :
48
54
package_name : ipyparallel
49
55
50
- - name : Test jupyter_kernel_test
56
+ jupyter_kernel_test :
57
+ - name : Checkout
58
+ uses : actions/checkout@v2
59
+
60
+ - name : Base Setup
61
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
62
+
63
+ - name : Run Test
51
64
run : |
52
65
git clone https://github.com/jupyter/jupyter_kernel_test.git
53
66
cd jupyter_kernel_test
You can’t perform that action at this time.
0 commit comments