-
Notifications
You must be signed in to change notification settings - Fork 164
48 lines (39 loc) · 1.22 KB
/
run_demos_tutorials.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
45
46
47
48
name: Run splink_demos tutorial notebooks
on:
pull_request:
branches:
- master
- "**dev"
paths:
- splink/**
- docs/demos/tutorials/**
- pyproject.toml
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9"]
name: Run tutorial notebooks with Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Install poetry using pipx
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "poetry"
- name: Install dependencies
run: |
poetry config virtualenvs.in-project true
poetry install --no-interaction --no-root
poetry run pip install -e .
- name: Install additional requirements
run: poetry run pip install -r docs/demos/data/demos_requirements.txt
- name: Modify Notebooks to reduce data size
run: python scripts/reduce_notebook_runtime.py
- name: Run tutorial notebooks
run: |
poetry run pytest -vv --nbmake -n=auto --nbmake-kernel=python3 docs/demos/tutorials/*ipynb