fixing tests #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: Documentation Check | |
| on: | |
| push: | |
| branches: [ main, master, develop ] | |
| paths: | |
| - '*.md' | |
| - '.github/workflows/docs.yml' | |
| pull_request: | |
| paths: | |
| - '*.md' | |
| - '.github/workflows/docs.yml' | |
| workflow_dispatch: | |
| jobs: | |
| docs-check: | |
| name: Documentation Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Validate documentation | |
| run: | | |
| echo "Checking documentation files..." | |
| test -f README.md | |
| test -f LICENSE | |
| test -f .github/CONTRIBUTING.md | |
| test -f .github/CODE_OF_CONDUCT.md | |
| test -f .github/SECURITY.md | |
| echo "All documentation files present" | |
| - name: Check for broken links | |
| uses: gaurav-nelson/github-action-markdown-link-check@v1 | |
| with: | |
| use-quiet-mode: 'yes' | |
| config-file: '.github/markdown-link-check.json' | |
| continue-on-error: true |