Skip to content

Commit

Permalink
ci: Use official uv action, sync
Browse files Browse the repository at this point in the history
  • Loading branch information
remsky committed Jan 14, 2025
1 parent 58cc7c8 commit 03531db
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ on:
jobs:
test:
runs-on: ubuntu-latest
env:
UV_SYSTEM_PYTHON: 1
strategy:
matrix:
python-version: ["3.10"]
Expand All @@ -24,12 +22,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
cache-dependency-glob: "uv.lock"

- name: Install dependencies
run: |
uv pip install -e .[test]
uv sync --all-extras
- name: Run Tests
run: |
uv run pytest api/tests/ ui/tests/ --asyncio-mode=auto --cov=api --cov=ui --cov-report=term-missing
uv run pytest api/tests/ --asyncio-mode=auto --cov=api --cov=ui --cov-report=term-missing

0 comments on commit 03531db

Please sign in to comment.