Skip to content

test: fix eval-smoke + yolo tests on Windows #31

test: fix eval-smoke + yolo tests on Windows

test: fix eval-smoke + yolo tests on Windows #31

Workflow file for this run

name: CI
on:
push:
branches: [main, "refactor/v1"]
pull_request:
branches: [main, "refactor/v1"]
jobs:
v1-package:
name: tabvision (v1) — lint + types + tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: tabvision
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install package + dev deps
run: pip install -e ".[dev]"
- name: Ruff lint
run: ruff check .
- name: Ruff format check
run: ruff format --check .
- name: Mypy
run: mypy tabvision
- name: Pytest
run: pytest -v