Skip to content

Commit 03ce1df

Browse files
committed
fix: update CI workflow for compatibility and debugging
1 parent 315548f commit 03ce1df

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,19 @@ jobs:
2323
with:
2424
python-version: '3.11'
2525

26-
- name: Install uv
27-
run: |
28-
curl -Ls https://astral.sh/uv/install.sh | sh
29-
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
26+
- name: Upgrade pip
27+
run: python -m pip install --upgrade pip
28+
29+
- name: Install project dependencies
30+
run: pip install .
3031

31-
- name: Install dependencies
32-
run: uv pip install --system --no-cache-dir
32+
- name: Install pytest
33+
run: pip install pytest
34+
35+
- name: Show Python version and installed packages
36+
run: |
37+
python --version
38+
pip list
3339
3440
- name: Run unit tests
3541
run: pytest tests

0 commit comments

Comments
 (0)