We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a730bf8 commit 0fe561fCopy full SHA for 0fe561f
.github/workflows/phantoms.yaml
@@ -63,9 +63,16 @@ jobs:
63
cache-dependency-path: |
64
pypet2bids/pyproject.toml
65
66
- - name: Install UV
+ - name: Install UV (Linux/macOS)
67
+ if: runner.os != 'Windows'
68
run: curl -LsSf https://astral.sh/uv/install.sh | sh && echo "$HOME/.cargo/bin" >> $GITHUB_PATH
69
70
+ - name: Install UV (Windows)
71
+ if: runner.os == 'Windows'
72
+ run: |
73
+ powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
74
+ echo "$env:USERPROFILE\.cargo\bin" >> $env:GITHUB_PATH
75
+
76
- name: Install Python Dependencies
77
run: |
78
cd pypet2bids
0 commit comments