Skip to content

Update project setup & add django 4.2 support #21

Update project setup & add django 4.2 support

Update project setup & add django 4.2 support #21

Workflow file for this run

name: Code style checks
on:
pull_request:
branches: [ main, master ]
push:
branches: [ main, master ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff==0.1.7
# Update output format to enable automatic inline annotations.
- name: Run Ruff check
run: ruff check --output-format=github .
- name: Run Ruff format --check
run: ruff format --check --diff .