Skip to content

[pre-commit.ci] pre-commit autoupdate #210

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #210

Workflow file for this run

name: BOOK
on:
push:
jobs:
marimo:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/uv/marimo
with:
working-directory: .github/hello-world
pdoc:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/uv/pdoc
with:
working-directory: .github/hello-world
sphinx:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/uv/sphinx
with:
working-directory: .github/hello-world
test:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/uv/coverage
with:
working-directory: .github/hello-world
jupyter:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/uv/jupyter
with:
working-directory: .github/hello-world
book:
runs-on: "ubuntu-latest"
needs: [test, pdoc, sphinx, jupyter, marimo]
permissions:
contents: write
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
- uses: ./actions/book