Skip to content

Commit

Permalink
templates
Browse files Browse the repository at this point in the history
  • Loading branch information
tschm committed Jan 5, 2025
1 parent 8a0a9dc commit b09c89e
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
17 changes: 15 additions & 2 deletions workflow-templates/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,33 @@ jobs:
sphinx:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/uv/sphinx@main

test:
runs-on: "ubuntu-latest"
steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/uv/test@main

pdoc:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/uv/pdoc@main

marimo:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/uv/marimo@main

book:
Expand All @@ -35,4 +45,7 @@ jobs:
contents: write

steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/book@main
3 changes: 3 additions & 0 deletions workflow-templates/latex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/latex@main
with:
paper: XXX.tex
Expand Down
4 changes: 3 additions & 1 deletion workflow-templates/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v4
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4

- uses: cvxgrp/.github/actions/uv/test@main
with:
python-version: ${{ matrix.python-version }}

0 comments on commit b09c89e

Please sign in to comment.