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 a8a7511 commit a678571Copy full SHA for a678571
.github/workflows/test.yml
@@ -69,8 +69,17 @@ jobs:
69
with:
70
toolchain: stable
71
72
- # assert cargo doc succeeds
73
- - run: cargo doc
74
-
75
# assert there are no warnings
76
- - run: '[ -z "$(cargo doc || grep warning)" ]'
+ - run: '[ -z "$(cargo doc --no-deps || grep warning)" ]'
+
+ # assert cargo doc succeeded
+ - run: cargo doc --no-deps
77
78
+ # assert that there's no broken links (links to examples like to break)
79
80
+ # remove some known-bad files that we know hyperlink can't handle, to
81
+ # silence errors
82
+ - run: rm target/doc/help.html target/doc/settings.html
83
+ - uses: untitaker/[email protected]
84
+ with:
85
+ args: target/doc/
0 commit comments