Skip to content

Bump actions/checkout from 4 to 5 (#79) #198

Bump actions/checkout from 4 to 5 (#79)

Bump actions/checkout from 4 to 5 (#79) #198

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