We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeaf518 commit 8cd6df8Copy full SHA for 8cd6df8
.github/workflows/main.yml
@@ -67,8 +67,16 @@ jobs:
67
with:
68
python-version: '3.11'
69
70
- - run: pip install -r requirements/requirements-documentation.txt
+ - name: Install dependencies
71
+ run: pip install -r requirements/requirements-documentation.txt
72
+
73
+ # Start mkdocs server and wait for it to be ready
74
- run: mkdocs serve &
75
- run: WAIT_TIME=0 && until nc -vzw 2 localhost 8000 || [ $WAIT_TIME -eq 5 ]; do sleep $(( WAIT_TIME++ )); done
76
- run: if [ $WAIT_TIME == 5 ]; then echo cannot start mkdocs server on http://localhost:8000; exit 1; fi
- - run: pylinkvalidate.py -P http://localhost:8000/
77
78
+ - name: Check links
79
+ continue-on-error: true
80
+ run: pylinkvalidate.py -P http://localhost:8000/
81
82
+ - run: echo "Done"
0 commit comments