initial commit #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "book" | |
on: | |
- push | |
jobs: | |
marimo: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout [${{ github.repository }}] | |
uses: actions/checkout@v4 | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2 # Dedicated action for loading .env files | |
- uses: cvxgrp/.github/actions/uv/[email protected] | |
with: | |
source_folder: ${{ env.MARIMO_FOLDER }} | |
pdoc: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout [${{ github.repository }}] | |
uses: actions/checkout@v4 | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2 # Dedicated action for loading .env files | |
- uses: cvxgrp/.github/actions/uv/[email protected] | |
with: | |
source-folder: ${{ env.SOURCE_FOLDER }} | |
test: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout [${{ github.repository }}] | |
uses: actions/checkout@v4 | |
- name: Load .env file | |
uses: xom9ikk/dotenv@v2 # Dedicated action for loading .env files | |
- uses: cvxgrp/.github/actions/uv/[email protected] | |
with: | |
tests-folder: ${{ env.TESTS_FOLDER }} | |
source-folder: ${{ env.SOURCE_FOLDER }} | |
jupyter: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout [${{ github.repository }}] | |
uses: actions/checkout@v4 | |
- uses: cvxgrp/.github/actions/uv/[email protected] | |
book: | |
runs-on: "ubuntu-latest" | |
needs: [test, pdoc, jupyter, marimo] | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout [${{ github.repository }}] | |
uses: actions/checkout@v4 | |
- uses: cvxgrp/.github/actions/[email protected] |