DX: define developer environment with uv
#3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run all notebooks | |
on: | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
notebook-selector: | |
description: Relative path to notebooks | |
required: false | |
type: string | |
jobs: | |
pytest: | |
name: Test all notebooks | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- uses: astral-sh/setup-uv@v3 | |
with: | |
enable-cache: true | |
- name: Install graphviz | |
run: sudo apt-get -y install graphviz | |
- if: github.event.inputs.notebook-selector == '' | |
name: Run all notebooks | |
run: uv run --extra test pytest | |
- if: github.event.inputs.notebook-selector | |
name: Run specific notebooks | |
run: | | |
function run-nbmake() { | |
set +e | |
uv run --extra test pytest ${{ github.event.inputs.notebook-selector }} | |
error_code=$? | |
set -e | |
echo "Pytest returned error code $error_code" | |
case $error_code in | |
0|5) return 0;; | |
*) return $error_code;; | |
esac | |
} | |
run-nbmake | |
# cspell:ignore esac |