Check Alt Text #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 Alt Text | |
| run-name: Check Alt Text | |
| on: | |
| push: | |
| paths: | |
| - '**.qmd' | |
| - 'lint_alt_text.py' | |
| - '.github/workflows/lint_alt_text.yml' | |
| pull_request: | |
| paths: | |
| - '**.qmd' | |
| - 'lint_alt_text.py' | |
| - '.github/workflows/lint_alt_text.yml' | |
| workflow_dispatch: | |
| jobs: | |
| check-alt-text: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Check images for alt text | |
| run: python lint_alt_text.py |