We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fd690c commit 9f95a94Copy full SHA for 9f95a94
.github/workflows/deploy.yml
@@ -18,8 +18,14 @@ jobs:
18
with:
19
python-version: '3.11'
20
21
- - name: Install marimo
22
- run: pip install marimo
+ - name: Install uv
+ run: |
23
+ curl -LsSf https://astral.sh/uv/install.sh | sh
24
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
25
+
26
+ - name: Install dependencies
27
28
+ uv add marimo
29
30
- name: Export marimo notebook
31
run: |
0 commit comments