Skip to content

Add autocompare traces, UI model add, and CI tests #1

Add autocompare traces, UI model add, and CI tests

Add autocompare traces, UI model add, and CI tests #1

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
- name: Lint
run: |
ruff check .
ruff format --check .
- name: Install Playwright browsers
run: python -m playwright install --with-deps chromium
- name: Unit and UI tests
run: pytest -q