Skip to content

Merge pull request #81 from the-virtual-brain/EBR-76-tvb-logo #183

Merge pull request #81 from the-virtual-brain/EBR-76-tvb-logo

Merge pull request #81 from the-virtual-brain/EBR-76-tvb-logo #183

Workflow file for this run

name: Test Notebooks
on:
push:
branches:
- '*'
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Run notebooks
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgl1 xvfb
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
python -m pip install nbformat nbconvert
- name: Run notebooks
run: xvfb-run -a python ./dev/notebook_runner.py notebooks