Skip to content

Commit

Permalink
testing Marimo flow
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 17, 2025
1 parent a2847ee commit d065fca
Showing 1 changed file with 5 additions and 18 deletions.
23 changes: 5 additions & 18 deletions template/.github/workflows/marimo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,34 +20,21 @@ jobs:
# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session
- name: "Verify UV installation"
run: |
echo $GITHUB_PATH
#export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session
# "Verify UV installation"
uv --version # Should print the installed version of UV
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: "3.12"

#- name: Install uv
# uses: astral-sh/setup-uv@v5
# with:
# python-version: '3.12'

- name: Create virtual environment
- name: Create venv and install dependencies + marimo
run: |
uv venv
- name: Install dependencies with uv
run: |
uv pip install --no-cache-dir -r requirements.txt
- name: Install marimo
run: |
uv pip install --no-cache-dir marimo
uv pip install --no-cache-dir marimo
- name: Convert notebooks to HTML
run: |
Expand Down

0 comments on commit d065fca

Please sign in to comment.