Add scenarios to excel example #245
Workflow file for this run
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: Build gh-pages | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-18.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
with: | |
python-version: 3.7 | |
- name: Install | |
run: | | |
python -m pip install --upgrade pip | |
pip install . | |
pip install jupyter nbconvert matplotlib seaborn | |
- name: Create synthetic F280 data as CSV | |
run: | | |
mkdir artifacts | |
cd examples/bash | |
./generate_synthetic_F280_dataset.sh ../../artifacts/synthetic_records.csv 1000 | |
- name: Convert example notebook to HTML | |
run: | | |
cd examples/notebooks | |
jupyter nbconvert --execute --to html basic_with_command_line.ipynb --output ../../artifacts/basic_with_command_line.html | |
jupyter nbconvert --execute --to html scenario_plots.ipynb --output ../../artifacts/scenario_plots.html | |
- name: Deploy if main | |
if: github.ref == 'refs/heads/main' | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} | |
publish_branch: gh-pages | |
publish_dir: ./artifacts | |
force_orphan: true | |
- name: Upload artifact if not main | |
if: github.ref != 'refs/heads/main' | |
uses: actions/upload-artifact@v2 | |
with: | |
name: gh-pages-draft | |
path: ./artifacts | |
retention-days: 4 |