Skip to content

examples: traffic speed radar — km/h from Entity.locus #65

examples: traffic speed radar — km/h from Entity.locus

examples: traffic speed radar — km/h from Entity.locus #65

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install
run: python -m pip install -e '.[dev]'
- name: Lint
run: ruff check .
- name: Test
run: python -m pytest -q