Add broken link checker and fix 8 broken relative links in docs #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check Docs | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| check-docs: | |
| name: Check documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: RDF syntax check | |
| uses: AtomGraph/RDF-syntax-check@v1.0.5 | |
| - name: Check links | |
| run: ./check-links.sh |