Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
# Step: Set up the virtual environment
- name: "Build the virtual environment"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

- name: "Run the marimo notebooks"
uses: tschm/cradle/actions/marimo@main
Expand All @@ -33,10 +33,10 @@ jobs:
steps:
# Set up Python environment with dependencies
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

# Generate API documentation for the source code
- uses: tschm/cradle/actions/pdoc@v0.1.71
- uses: tschm/cradle/actions/pdoc@v0.1.72
with:
source-folder: 'src/cvxsimulator'

Expand All @@ -48,10 +48,10 @@ jobs:
steps:
# Set up Python environment with dependencies
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

# Run tests and generate coverage report
- uses: tschm/cradle/actions/coverage@v0.1.71
- uses: tschm/cradle/actions/coverage@v0.1.72
with:
tests-folder: 'src/tests'
source-folder: 'src/cvxsimulator'
Expand All @@ -64,10 +64,10 @@ jobs:
steps:
# Set up Python environment with dependencies
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

# Run Jupyter notebook processing
- uses: tschm/cradle/actions/jupyter@v0.1.71
- uses: tschm/cradle/actions/jupyter@v0.1.72

book:
runs-on: "ubuntu-latest"
Expand All @@ -86,4 +86,4 @@ jobs:
# Step: Upload the generated documentation book
# Skipped when running locally with 'act' to prevent accidental deployments
- name: Upload the book
uses: tschm/cradle/actions/book@v0.1.71
uses: tschm/cradle/actions/book@v0.1.72
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
steps:
# Set up Python environment with dependencies for the specified version
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72
with:
python-version: ${{ matrix.python-version }}

# Run the test suite
- uses: tschm/cradle/actions/test@v0.1.71
- uses: tschm/cradle/actions/test@v0.1.72
with:
tests-folder: 'src/tests'
4 changes: 2 additions & 2 deletions .github/workflows/marimo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

- name: List notebooks
id: set-notebooks
Expand All @@ -40,7 +40,7 @@ jobs:

steps:
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

- name: Run notebook
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
# Set up Python environment with dependencies
- name: "Build the virtual environment for ${{ github.repository }}"
uses: tschm/cradle/actions/environment@v0.1.71
uses: tschm/cradle/actions/environment@v0.1.72

- name: Run deptry
run : |
Expand All @@ -29,4 +29,4 @@ jobs:
runs-on: ubuntu-latest
steps:
# Run all configured pre-commit hooks
- uses: tschm/cradle/actions/pre-commit@v0.1.71
- uses: tschm/cradle/actions/pre-commit@v0.1.72
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- name: Generate Tag
id: tag_step
uses: tschm/cradle/actions/tag@v0.1.71 # Use the tag action to generate a new version tag
uses: tschm/cradle/actions/tag@v0.1.72 # Use the tag action to generate a new version tag
with:
github_token: ${{ secrets.GITHUB_TOKEN }} # GitHub token for authentication

Expand Down