Skip to content

Bump django-axes from 7.0.0 to 7.0.1 #1014

Bump django-axes from 7.0.0 to 7.0.1

Bump django-axes from 7.0.0 to 7.0.1 #1014

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r requirements_dev.txt
- name: Lint with pylint
run: |
cd src
find -name "*.py" -not -path "*/migrations/*" -not -path "*/test/*" -not -path "*/delfitlm/*" |
xargs pylint --max-line-length=120 --load-plugins pylint_django --django-settings-module=delfitlm.settings