File tree Expand file tree Collapse file tree 3 files changed +27
-14
lines changed Expand file tree Collapse file tree 3 files changed +27
-14
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,52 +2,67 @@ 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
-
17
15
steps :
18
16
- name : Checkout
19
17
uses : actions/checkout@v2
20
18
21
19
- name : Base Setup
22
20
uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
23
21
24
- - name : Test nbclient
22
+ - name : Run Test
25
23
uses : jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
26
24
with :
27
25
package_name : nbclient
28
26
env_values : IPYKERNEL_CELL_NAME=\<IPY-INPUT\>
29
27
30
- - name : Test jupyter_client
28
+ jupyter_client :
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - name : Checkout
32
+ uses : actions/checkout@v2
33
+
34
+ - name : Base Setup
35
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
36
+
37
+ - name : Run Test
31
38
uses : jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
32
39
with :
33
40
package_name : jupyter_client
34
41
35
- downstream2 :
42
+ ipyparallel :
36
43
runs-on : ubuntu-latest
37
-
38
44
steps :
39
45
- name : Checkout
40
46
uses : actions/checkout@v2
41
47
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
+ runs-on : ubuntu-latest
58
+ steps :
59
+ - name : Checkout
60
+ uses : actions/checkout@v2
61
+
62
+ - name : Base Setup
63
+ uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
64
+
65
+ - name : Run Test
51
66
run : |
52
67
git clone https://github.com/jupyter/jupyter_kernel_test.git
53
68
cd jupyter_kernel_test
You can’t perform that action at this time.
0 commit comments