Fix duplicate dependency #239
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: Tests » Documentation build | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/test-documentation-build.yml' | |
| - 'docs/guides/**' | |
| - 'docs/checkstyle/check-docs.sh' | |
| - '**.md' | |
| push: | |
| paths: | |
| - '.github/workflows/test-documentation-build.yml' | |
| - 'docs/guides/**' | |
| - 'docs/checkstyle/check-docs.sh' | |
| - '**.md' | |
| jobs: | |
| # Check documentation with markdownlint and build it using mkdocs | |
| test-documentation: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: set up python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.13 | |
| - name: install mkdocs | |
| working-directory: docs/guides | |
| run: pip install -q -r requirements.txt | |
| - name: install javascript dependencies | |
| working-directory: docs/guides | |
| run: npm ci | |
| - name: check documentation | |
| run: ./docs/checkstyle/check-docs.sh |