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 f6faef9 commit 3069b03Copy full SHA for 3069b03
Makefile
@@ -8,6 +8,14 @@ build:
8
bundle exec jekyll clean
9
bundle exec jekyll build --future --drafts --unpublished
10
11
-test:
+test: test-fast test-slow
12
+
13
+test-slow:
14
+ ## Check for malformed HTML and broken internal links
15
bundle exec htmlproof --check-html --disable-external --url-ignore '/^\/bin/.*/' ./_site
16
+ ## Check that links on the /en/download page point to the separately-stored binaries in /bin
17
contrib/qa/test-binary-availability.sh && echo "SUCCESS checking URLs for binaries"
18
19
+test-fast:
20
+ ## Check for broken Markdown reference-style links that are displayed in text unchanged, e.g. [broken][broken link]
21
+ ! find _site/ -name '*.html' | xargs grep ']\[' | grep -v skip-test | grep .
0 commit comments