Bump django from 5.1.7 to 5.1.13 (#121) #213
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |