Skip to content

Commit

Permalink
apparantly an explicit uv python install is required after all
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham committed Sep 8, 2024
1 parent ef3ce90 commit 60925de
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,11 @@ jobs:
version: ${{ env.VERSION_UV }}
enable-cache: true

- name: setup python
run: uv python install 3.8

- name: uv sync
run: uv sync --frozen --dev --python 3.8
run: uv sync --frozen --dev

- name: codespell
run: uv run codespell .
Expand Down Expand Up @@ -81,8 +84,11 @@ jobs:
version: ${{ env.VERSION_UV }}
enable-cache: true

- name: setup python
run: uv python install ${{ matrix.python-version }}

- name: uv sync
run: uv sync --frozen --dev --python ${{ matrix.python-version }}
run: uv sync --frozen --dev

- name: pytest
run: uv run pytest

0 comments on commit 60925de

Please sign in to comment.