Skip to content

build(deps): bump the actions-deps group with 4 updates #1841

build(deps): bump the actions-deps group with 4 updates

build(deps): bump the actions-deps group with 4 updates #1841

Workflow file for this run

name: Check Build
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
filter: blob:none
fetch-depth: 0
persist-credentials: false
- name: Install uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- name: Build package
run: uv build
- name: Check package
run: uvx twine check --strict dist/*.whl
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
submodules: true
fetch-depth: 0
persist-credentials: false
- name: Pull latest notebooks
# Match RTD: render whatever is on notebooks-repo main, not the pinned SHA.
run: git submodule update --init --remote --recursive
- name: Install uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
- name: Build docs
run: uvx hatch run docs:build