3a2c66702c
Tests on CPU (scheduled) / check-skip (push) Has been cancelled
Tests on CPU (scheduled) / pre-tests (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float32) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-ubuntu (float64) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.11, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.12, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-windows (3.13, float64, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.11, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.5.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.12, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / tests-cpu-mac (3.13, float32, 2.9.1) (push) Has been cancelled
Tests on CPU (scheduled) / coverage (push) Has been cancelled
Tests on CPU (scheduled) / typing (push) Has been cancelled
Tests on CPU (scheduled) / tutorials (push) Has been cancelled
Tests on CPU (scheduled) / docs (push) Has been cancelled
Lint / TOML Format (push) Has been cancelled
80 lines
2.0 KiB
YAML
80 lines
2.0 KiB
YAML
on:
|
|
pull_request:
|
|
branches: [main]
|
|
paths:
|
|
- 'docs/**'
|
|
- '*.rst'
|
|
workflow_call:
|
|
inputs:
|
|
python-version:
|
|
required: false
|
|
type: string
|
|
default: '["3.11"]'
|
|
fail-fast:
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
ref:
|
|
required: false
|
|
type: string
|
|
default: ${{ github.sha }}
|
|
cache-path:
|
|
required: false
|
|
type: string
|
|
cache-key:
|
|
required: false
|
|
type: string
|
|
cache-restore-keys:
|
|
required: false
|
|
type: string
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
docs:
|
|
name: docs
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: ${{ inputs.fail-fast }}
|
|
matrix:
|
|
python-version: ${{ fromJSON(inputs.python-version) }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v6
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha || inputs.ref }}
|
|
|
|
- name: Restore cache
|
|
if: inputs.cache-path != ''
|
|
uses: actions/cache/restore@v5
|
|
with:
|
|
path: ${{ inputs.cache-path }}
|
|
key: ${{ inputs.cache-key }}
|
|
restore-keys: ${{ inputs.cache-restore-keys }}
|
|
|
|
- name: Set pixi environment name
|
|
id: pixi-env
|
|
shell: bash
|
|
run: echo "name=py$(echo '${{ matrix.python-version }}' | tr -d '.')" >> $GITHUB_OUTPUT
|
|
|
|
- name: Setup pixi
|
|
uses: prefix-dev/setup-pixi@v0.9.6
|
|
with:
|
|
pixi-version: v0.40.0
|
|
cache: true
|
|
environments: ${{ steps.pixi-env.outputs.name }}
|
|
|
|
- name: Install environment
|
|
run: pixi install -e ${{ steps.pixi-env.outputs.name }} --locked
|
|
|
|
- name: Install docs dependencies
|
|
run: pixi run -e ${{ steps.pixi-env.outputs.name }} install-docs
|
|
|
|
- name: Run doctest
|
|
run: pixi run -e ${{ steps.pixi-env.outputs.name }} doctest
|
|
|
|
- name: Build Documentation
|
|
run: pixi run -e ${{ steps.pixi-env.outputs.name }} build-docs
|