Skip to content

Commit 8d87867

Browse files
authored
Merge pull request #871 from blink1073/cleanup-ci
2 parents 221dca6 + 2955fa8 commit 8d87867

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

.github/workflows/check-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
name: Check Release
22
on:
33
push:
4-
branches: ["master"]
4+
branches: ["main"]
55
pull_request:
6-
branches: ["*"]
76

87
concurrency:
98
group: check-release-${{ github.ref }}

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@ name: ipykernel tests
22

33
on:
44
push:
5-
branches: "master"
5+
branches: ["main"]
66
pull_request:
7-
branches: "*"
87

98
concurrency:
109
group: ci-${{ github.ref }}

.github/workflows/downstream.yml

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,52 +2,67 @@ name: Test downstream projects
22

33
on:
44
push:
5-
branches: "master"
5+
branches: ["main"]
66
pull_request:
7-
branches: "*"
87

98
concurrency:
109
group: downstream-${{ github.ref }}
1110
cancel-in-progress: true
1211

1312
jobs:
14-
downstream1:
13+
nbclient:
1514
runs-on: ubuntu-latest
16-
1715
steps:
1816
- name: Checkout
1917
uses: actions/checkout@v2
2018

2119
- name: Base Setup
2220
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
2321

24-
- name: Test nbclient
22+
- name: Run Test
2523
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
2624
with:
2725
package_name: nbclient
2826
env_values: IPYKERNEL_CELL_NAME=\<IPY-INPUT\>
2927

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
3138
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
3239
with:
3340
package_name: jupyter_client
3441

35-
downstream2:
42+
ipyparallel:
3643
runs-on: ubuntu-latest
37-
3844
steps:
3945
- name: Checkout
4046
uses: actions/checkout@v2
4147

4248
- name: Base Setup
4349
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
4450

45-
- name: Test ipyparallel
51+
- name: Run Test
4652
uses: jupyterlab/maintainer-tools/.github/actions/downstream-test@v1
4753
with:
4854
package_name: ipyparallel
4955

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
5166
run: |
5267
git clone https://github.com/jupyter/jupyter_kernel_test.git
5368
cd jupyter_kernel_test

0 commit comments

Comments
 (0)