-
Notifications
You must be signed in to change notification settings - Fork 1
44 lines (42 loc) · 1.17 KB
/
notebooks.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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