Skip to content

Merge pull request #83 from openEDI/jm/topology_changes #343

Merge pull request #83 from openEDI/jm/topology_changes

Merge pull request #83 from openEDI/jm/topology_changes #343

Workflow file for this run

name: RunExample
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ['3.10']
#include:
#- os: ubuntu-latest
#python-version: 3.10
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
shell: bash -l {0}
run: |
pip install -r requirements.txt
- name: Run example
shell: bash -l {0}
run: |
oedisi build --system scenarios/docker_system.json
oedisi run
python post_analysis.py
- name: Archive logs
uses: actions/upload-artifact@v2
if: always()
with:
name: test_logs
path: |
*.png
build/*.log