Skip to content

Commit

Permalink
add linkchecker to the html parser's docs (#100)
Browse files Browse the repository at this point in the history
* add linkchecker to the html parser's docs

we have come full circle

* remove bad files
  • Loading branch information
untitaker authored Oct 29, 2024
1 parent a8a7511 commit a678571
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,17 @@ jobs:
with:
toolchain: stable

# assert cargo doc succeeds
- run: cargo doc

# assert there are no warnings
- run: '[ -z "$(cargo doc || grep warning)" ]'
- run: '[ -z "$(cargo doc --no-deps || grep warning)" ]'

# assert cargo doc succeeded
- run: cargo doc --no-deps

# assert that there's no broken links (links to examples like to break)

# remove some known-bad files that we know hyperlink can't handle, to
# silence errors
- run: rm target/doc/help.html target/doc/settings.html
- uses: untitaker/hyperlink@0.1.42
with:
args: target/doc/

0 comments on commit a678571

Please sign in to comment.