feat: add via field for through-flight stops + married segment detection #27
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: 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" |