Commit f914126 Steven Silvester
authored
1 parent 559ea43 commit f914126 Copy full SHA for f914126
File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
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]
11
14
steps :
12
15
- name : Checkout
13
16
uses : actions/checkout@v2
29
32
${{ runner.os }}-pip-
30
33
${{ runner.os }}-pip-
31
34
- name : Cache checked links
35
+ if : ${{ matrix.group == 'link_check' }}
32
36
uses : actions/cache@v2
33
37
with :
34
38
path : ~/.cache/pytest-link-check
42
46
run : |
43
47
pip install -e .
44
48
- name : Check Release
49
+ if : ${{ matrix.group == 'check_release' }}
45
50
uses : jupyter-server/jupyter_releaser/.github/actions/check-release@v1
46
51
with :
47
52
token : ${{ secrets.GITHUB_TOKEN }}
53
+ - name : Run Link Check
54
+ if : ${{ matrix.group == 'link_check' }}
55
+ uses : jupyter-server/jupyter_releaser/.github/actions/check-links@v1
Original file line number Diff line number Diff line change @@ -14,6 +14,9 @@ testpaths = [
14
14
" jupyter_server"
15
15
]
16
16
17
+ [tool .jupyter-releaser ]
18
+ skip = [" check-links" ]
19
+
17
20
[tool .tbump .version ]
18
21
current = " 1.11.0.dev0"
19
22
regex = '''
You can’t perform that action at this time.
0 commit comments