Skip to content

feat: add via field for through-flight stops + married segment detection #27

feat: add via field for through-flight stops + married segment detection

feat: add via field for through-flight stops + married segment detection #27

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Install dependencies
run: uv sync --dev
- name: Install Playwright browsers
run: uv run playwright install chromium
- name: Lint
run: |
uv run ruff check rtw/ tests/
uv run ruff format --check rtw/ tests/
- name: Test
run: uv run pytest -v -m "not slow and not integration"