Skip to content

star automated thanks #140

star automated thanks

star automated thanks #140

Workflow file for this run

name: Static Analysis
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
jobs:
flake8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8==7.3.0
- name: Run flake8 static analysis
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics