File tree 3 files changed +12
-14
lines changed
3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change 8
8
jobs :
9
9
check_release :
10
10
runs-on : ubuntu-latest
11
- strategy :
12
- matrix :
13
- group : [check_release, link_check]
14
- fail-fast : false
15
11
steps :
16
12
- name : Checkout
17
13
uses : actions/checkout@v2
21
17
run : |
22
18
pip install -e .
23
19
- name : Check Release
24
- if : ${{ matrix.group == 'check_release' }}
25
- uses : jupyter-server/jupyter_releaser/.github/actions/check-release@v1
20
+ uses : jupyter-server/jupyter_releaser/.github/actions/check-release@version2
26
21
with :
27
- version_spec : 100.100.100
28
22
token : ${{ secrets.GITHUB_TOKEN }}
29
- - name : Run Link Check
30
- if : ${{ matrix.group == 'link_check' }}
31
- uses : jupyter-server/jupyter_releaser/.github/actions/check-links@v1
Original file line number Diff line number Diff line change @@ -148,6 +148,15 @@ jobs:
148
148
with :
149
149
test_command : pytest -vv || pytest -vv --lf
150
150
151
+ check_links :
152
+ name : Check Links
153
+ runs-on : ubuntu-latest
154
+ timeout-minutes : 15
155
+ steps :
156
+ - uses : actions/checkout@v2
157
+ - uses : jupyterlab/maintainer-tools/.github/actions/base-setup@v1
158
+ - uses : jupyterlab/maintainer-tools/.github/actions/check-links@v1
159
+
151
160
python_tests_check : # This job does nothing and is only used for the branch protection
152
161
if : always()
153
162
needs :
Original file line number Diff line number Diff line change @@ -109,12 +109,10 @@ filterwarnings = [
109
109
" ignore:Passing a schema to Validator.iter_errors:DeprecationWarning" ,
110
110
" ignore:unclosed <socket.socket:ResourceWarning" ,
111
111
" ignore:unclosed event loop:ResourceWarning" ,
112
- " ignore:run_pre_save_hook is deprecated:DeprecationWarning"
112
+ " ignore:run_pre_save_hook is deprecated:DeprecationWarning" ,
113
+ " module:Jupyter is migrating its paths to use standard platformdirs:DeprecationWarning" ,
113
114
]
114
115
115
- [tool .jupyter-releaser ]
116
- skip = [" check-links" ]
117
-
118
116
[tool .jupyter-releaser .hooks ]
119
117
before-build-python = [" npm install" , " npm run build" ]
120
118
You can’t perform that action at this time.
0 commit comments