-
Notifications
You must be signed in to change notification settings - Fork 57
35 lines (31 loc) · 1011 Bytes
/
notebooks.yaml
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
name: Notebooks
on: push
jobs:
run-notebooks:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: mamba-org/[email protected]
with:
environment-file: environment.yml
cache-environment: true
- name: Check GPU availability
shell: bash -l {0}
run: |
python -c "import torch; print('Is CUDA available:', torch.cuda.is_available())"
- name: Import flow_matching
shell: bash -l {0}
working-directory: examples
run: |
PYTHONPATH=../
python -c "import sys; print(sys.path)"
python -c "import flow_matching; print('flow_matching module imported successfully')"
- name: Run notebooks
shell: bash -l {0}
working-directory: examples
run: |
set -e
PYTHONPATH=../
for file in ./*.ipynb; do
jupyter nbconvert --to notebook --execute --ExecutePreprocessor.timeout=300 "$file"
done