Skip to content

Merge pull request #12 from itberrios/patch-1 #121

Merge pull request #12 from itberrios/patch-1

Merge pull request #12 from itberrios/patch-1 #121

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v1
with:
python-version: '3.8'
architecture: 'x64'
- name: Install the library
run: |
pip install nbdev jupyter
pip install matplotlib
pip install fastprogress
pip install -e .
- name: Read all notebooks
run: |
nbdev_read_nbs
- name: Check if all notebooks are cleaned
run: |
echo "Check we are starting with clean git checkout"
if [ -n "$(git status -uno -s)" ]; then echo "git status is not clean"; false; fi
echo "Trying to strip out notebooks"
nbdev_clean_nbs
echo "Check that strip out was unnecessary"
git status -s # display the status to see which nbs need cleaning up
if [ -n "$(git status -uno -s)" ]; then echo -e "!!! Detected unstripped out notebooks\n!!!Remember to run nbdev_install_git_hooks"; false; fi
- name: Check if there is no diff library/notebooks
run: |
if [ -n "$(nbdev_diff_nbs)" ]; then echo -e "!!! Detected difference between the notebooks and the library"; false; fi
- name: Download sample data for tests
run: |
wget -P samples/ https://fireball.teckyianlim.me/file/flaming-cake/indoor_sample_50.h5
- name: Run tests
run: |
nbdev_test_nbs