davidgasquez commited on
Commit
0fd668c
Β·
1 Parent(s): 6354981

fix: πŸ› correct Python setup in CI workflow

Browse files

Replaced incorrect setup-uv usage with direct Python 3.12 installation for proper CI configuration.

Files changed (1) hide show
  1. .github/workflows/ci.yml +2 -1
.github/workflows/ci.yml CHANGED
@@ -22,8 +22,9 @@ jobs:
22
  - name: Setup Python
23
  uses: astral-sh/setup-uv@v2
24
  with:
25
- version: 3.12
26
  enable-cache: true
 
 
27
  - name: Run
28
  run: |
29
  make run
 
22
  - name: Setup Python
23
  uses: astral-sh/setup-uv@v2
24
  with:
 
25
  enable-cache: true
26
+ - name: Install Python 3.12
27
+ run: uv python install 3.12
28
  - name: Run
29
  run: |
30
  make run