Remove obsolete benchmark data files and associated plotting scripts #21
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: Docs Link Check | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| paths: | |
| - "**/*.md" | |
| - ".github/workflows/docs-links.yml" | |
| - "scripts/check_doc_links.sh" | |
| pull_request: | |
| branches: [main, develop] | |
| paths: | |
| - "**/*.md" | |
| - ".github/workflows/docs-links.yml" | |
| - "scripts/check_doc_links.sh" | |
| jobs: | |
| docs-links: | |
| name: Validate Markdown Links | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Check local markdown links | |
| run: bash scripts/check_doc_links.sh |