File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
{{cookiecutter.github_project_name}}/.github/workflows Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 44
44
yarn run lint:check
45
45
yarn run test
46
46
47
- - name : Check docs can be build + links
48
- working-directory : jupyter-widget-testwidgets/docs
49
- run : |
50
- sudo apt install -y pandoc
51
- make html SPHINXOPTS="-W"
52
- python -m pytest --check-links
53
-
54
47
- name : Validate extension usage
55
48
working-directory : jupyter-widget-testwidgets
56
49
run : |
62
55
jupyter labextension list 2>&1 | grep -ie "jupyter-widget-testwidgets.*OK"
63
56
# Make sure our lab extension can be develop installed.
64
57
jupyter labextension develop . --overwrite
58
+
59
+ - name : Check docs can be build + links
60
+ if : {{ matrix.os == 'ubuntu-latest' }}
61
+ working-directory : jupyter-widget-testwidgets/docs
62
+ run : |
63
+ sudo apt install -y pandoc
64
+ make html SPHINXOPTS="-W"
65
+ python -m pytest --check-links
Original file line number Diff line number Diff line change 32
32
yarn run test
33
33
34
34
- name : Check docs can be build + links
35
+ if : {{ matrix.os == 'ubuntu-latest' }}
35
36
run : |
36
37
sudo apt install -y pandoc
37
38
pushd docs
You can’t perform that action at this time.
0 commit comments