Merge pull request #11 from senderkit/claude/gallant-einstein-56qo2v #30
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 4 * * 1" # weekly, Mondays | |
| permissions: | |
| contents: read | |
| jobs: | |
| analyze: | |
| name: Analyze (Python) | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read # read workflow run metadata | |
| contents: read # required for actions/checkout | |
| security-events: write # upload CodeQL results | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v4 | |
| with: | |
| languages: python | |
| queries: security-and-quality | |
| - name: Perform CodeQL analysis | |
| uses: github/codeql-action/analyze@v4 |