Merge pull request #143 from siapy/release-please--branches--main #533
This file contains 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 analysis | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: "0 13 * * 1" | |
workflow_dispatch: | |
jobs: | |
analyze: | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- uses: github/codeql-action/init@v3 | |
with: | |
languages: python | |
setup-python-dependencies: false | |
- uses: github/codeql-action/analyze@v3 |