Deepen tests (~4x) + demos (~4x), harden malformed-input handling, fix POA&M numbering #34
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: codeql | |
| on: | |
| push: { branches: [main] } | |
| pull_request: { branches: [main] } | |
| schedule: [{ cron: "27 3 * * 1" }] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: { security-events: write, actions: read, contents: read } | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: github/codeql-action/init@v3 | |
| with: { languages: python } | |
| - uses: github/codeql-action/analyze@v3 |