Skip to content

Bump django from 4.2.8 to 4.2.10 #28

Bump django from 4.2.8 to 4.2.10

Bump django from 4.2.8 to 4.2.10 #28

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 .