Skip to content

Bump django from 5.1.4 to 5.1.5 in /backend #93

Bump django from 5.1.4 to 5.1.5 in /backend

Bump django from 5.1.4 to 5.1.5 in /backend #93

Workflow file for this run

name: Ruff lint
on:
push:
branches: [ "main" ]
paths:
- 'backend/**'
- '.github/workflows/**'
pull_request:
branches: [ "main" ]
paths:
- 'backend/**'
- '.github/workflows/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.11, 3.12]
steps:
- uses: actions/checkout@v4
with:
sparse-checkout: |
.github
backend
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
working-directory: ./backend
run: |
python -m pip install --upgrade pip
pip install -r requirements.dev.txt
- name: Lint
working-directory: ./backend
run: |
ruff check