Skip to content

ci: update dependency installation command and expand test coverage #29

ci: update dependency installation command and expand test coverage

ci: update dependency installation command and expand test coverage #29

Workflow file for this run

name: CI
on:
push:
branches: [ "core/uv-management" ]
pull_request:
branches: [ "core/uv-management" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
uv pip install -e .[test,cpu]
- name: Run Tests
run: |
uv run pytest api/tests/ --asyncio-mode=auto --cov=api --cov=ui --cov-report=term-missing