Skip to content

Bump flake8 from 6.1.0 to 7.0.0 #183

Bump flake8 from 6.1.0 to 7.0.0

Bump flake8 from 6.1.0 to 7.0.0 #183

Workflow file for this run

name: Code Quality Checking with Flake8
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install django flake8
- name: Lint with Flake8
run: |
flake8 . --show-source --statistics