Skip to content

Commit

Permalink
CI: Use astral-sh/setup-uv action
Browse files Browse the repository at this point in the history
  • Loading branch information
jenisys committed Oct 3, 2024
1 parent fdae460 commit 35096a3
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,19 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: 'py.requirements/*.txt'
- name: setup-uv -- Speed-up Python package installations ...
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
cache-dependency-glob: |
**/pyproject.toml
**/py.requirements/ci.github.testing.txt
**/py.requirements/basic.txt
- name: "Install Python package dependencies (with: uv)"
run: |
python -m pip install -U uv
python -m uv pip install -U pip setuptools wheel
python -m uv pip install --upgrade -r py.requirements/ci.github.testing.txt
python -m uv pip install -e .
uv pip install --system -U pip setuptools wheel
uv pip install --system -U -r py.requirements/ci.github.testing.txt
uv pip install --system -e .
- name: Run tests
run: pytest
- name: Upload test reports
Expand Down

0 comments on commit 35096a3

Please sign in to comment.