Skip to content

Bump django from 5.1.13 to 5.1.14 #219

Bump django from 5.1.13 to 5.1.14

Bump django from 5.1.13 to 5.1.14 #219

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: Checking lint rules
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/setup-uv@v5
with:
version: "latest"
python-version: "3.12"
enable-cache: true
cache-suffix: "ruff"
- name: Install dependencies
run: |
uv pip install ruff -c requirements-dev.txt
- name: Check linting
run: |
ruff check osm_paths
- name: Check format
run: |
ruff format --check osm_paths