Use ruff
in place of bandit
and black
(#359)
#663
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 | |
"on": | |
push: | |
branches: | |
- dev | |
- main | |
pull_request: | |
branches: | |
- dev | |
- main | |
workflow_dispatch: | |
schedule: | |
- cron: "30 1 * * 0" | |
jobs: | |
codeql: | |
name: Scanning | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: 🏗 Initialize CodeQL | |
uses: github/codeql-action/init@v2 | |
- name: 🚀 Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v2 |