Bump github/codeql-action from 3.26.6 to 3.26.7 #381
Workflow file for this run
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: Flake8 | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
check: | |
name: Check with Flake8 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Install Flake8 | |
run: sudo python -m pip install flake8 | |
- name: Run Flake8 | |
run: flake8 *.py |