Skip to content

feat: spark docker compose instructions added #21

feat: spark docker compose instructions added

feat: spark docker compose instructions added #21

Workflow file for this run

name: ci
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-extras --dev
- run: uv run mkdocs gh-deploy --force