Skip to content

install fixes

install fixes #49

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up uv and Python
uses: astral-sh/setup-uv@v6
with:
python-version: "3.13"
- name: Install dependencies
run: uv sync --all-groups --frozen
- name: Install Playwright Chromium
run: uv run playwright install --with-deps chromium
- name: Ruff
run: uv run ruff check .
- name: Mypy
run: uv run mypy .
- name: Pytest
run: uv run python -m pytest