Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Nov 9, 2024
1 parent a2bcbcb commit 98ddf19
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,20 @@ jobs:
- name: Install UV
run: curl -LsSf https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | sh

- name: See paths
run: |-
python -c 'import shutil; print(shutil.which("uv"))'
python -c 'import os.path; print(os.path.expanduser("~"))'
python -c 'import os; print(os.environ["PATH"])'
- name: See dir
run: bash -c 'ls -la $HOME/.local/bin'

- name: Try
run: |-
bash -c 'which uv'
bash -c '$HOME/.local/bin/uv${{ runner.os == 'Windows' && '.exe' || '' }} --version'
- name: Install ourself
run: |
uv pip install --system -e .
Expand Down

0 comments on commit 98ddf19

Please sign in to comment.