Split the security aspect of PWR018 into PWR085 #182
Workflow file for this run
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: Validate README Table | |
| on: | |
| push: | |
| paths: | |
| - '.github/workflows/**' | |
| - 'Checks/**' | |
| - 'README.md' | |
| jobs: | |
| validate-readme: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Setup Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Validate README Table | |
| run: python .github/utils/ValidateReadmeTable.py |