minor changes #252
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Notebooks | |
on: [push, pull_request] | |
#on: | |
# schedule: | |
# # 4am daily | |
# - cron: '0 1 * * *' | |
jobs: | |
build-and-test: | |
name: check examples | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python 3.7 | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.7 | |
architecture: x64 | |
- name: Install dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Install pyross | |
run: python setup.py install | |
- name: testing-inference | |
shell: bash -l {0} | |
run: | | |
make nbtest -e path="examples/inference" recursive=False | |
- name: testing-deterministic | |
shell: bash -l {0} | |
run: | | |
make nbtest -e path="examples/deterministic" recursive=False | |
- name: testing-stochastic | |
shell: bash -l {0} | |
run: | | |
make nbtest -e path="examples/stochastic" recursive=False | |
- name: testing-control | |
shell: bash -l {0} | |
run: | | |
make nbtest -e path="examples/control" recursive=False | |
- name: testing-forecast | |
shell: bash -l {0} | |
run: | | |
make nbtest -e path="examples/forecast/" recursive=False |