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
12 changes: 6 additions & 6 deletions .github/workflows/book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
steps:
# Step: Set up the virtual environment
- name: "Build the virtual environment"
uses: tschm/cradle/actions/environment@v0.1.64
uses: tschm/cradle/actions/environment@v0.1.66

# Step: Generate API documentation with pdoc
# Creates documentation from the source code in src/jquantstats
- uses: tschm/cradle/actions/pdoc@v0.1.64
- uses: tschm/cradle/actions/pdoc@v0.1.66
with:
source-folder: src/jquantstats

Expand All @@ -36,7 +36,7 @@ jobs:
steps:
# Step: Set up the virtual environment
- name: "Build the virtual environment"
uses: tschm/cradle/actions/environment@v0.1.64
uses: tschm/cradle/actions/environment@v0.1.66

# Step: Run tests and generate coverage reports
# Also uploads coverage data to Coveralls if enabled
Expand All @@ -53,11 +53,11 @@ jobs:
steps:
# Step: Set up the virtual environment
- name: "Build the virtual environment"
uses: tschm/cradle/actions/environment@v0.1.64
uses: tschm/cradle/actions/environment@v0.1.66

# Step: Process Jupyter notebooks
# Executes and prepares notebooks for documentation
- uses: tschm/cradle/actions/jupyter@v0.1.64
- uses: tschm/cradle/actions/jupyter@v0.1.66

# Job: book
# Purpose: Combines and publishes the documentation
Expand All @@ -79,4 +79,4 @@ jobs:
# Skipped when running locally with 'act' to prevent accidental deployments
- name: Upload the book
if: ${{ env.ACT != 'true' }} # Skip if running with 'act'
uses: tschm/cradle/actions/book@v0.1.64
uses: tschm/cradle/actions/book@v0.1.66
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
# Step: Set up the virtual environment with the specified Python version
# This prepares the environment for running tests
- name: "Build the virtual environment"
uses: tschm/cradle/actions/environment@v0.1.64
uses: tschm/cradle/actions/environment@v0.1.66
with:
python-version: ${{ matrix.python-version }}

# Step: Run the test suite
# Executes all tests in the src/tests directory
- uses: tschm/cradle/actions/test@v0.1.64
- uses: tschm/cradle/actions/test@v0.1.66
with:
tests-folder: src/tests
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ jobs:
steps:
# Step: Run pre-commit checks using the cradle action
# This action handles the checkout of code and runs all pre-commit hooks
- uses: tschm/cradle/actions/pre-commit@v0.1.64
- uses: tschm/cradle/actions/pre-commit@v0.1.66
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# Step: Generate a new version tag using the cradle action
- name: Generate Tag
id: tag_step
uses: tschm/cradle/actions/tag@v0.1.64
uses: tschm/cradle/actions/tag@v0.1.66
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -37,7 +37,7 @@ jobs:
steps:
# Step: Build the package using the cradle build action
- name: build
uses: tschm/cradle/actions/build@v0.1.64
uses: tschm/cradle/actions/build@v0.1.66
with:
# Use the tag generated in the previous job
tag: ${{ needs.tagging.outputs.new_tag }}
Expand Down