Skip to content

Import reader list from indra and update local variable #4

Import reader list from indra and update local variable

Import reader list from indra and update local variable #4

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.7" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install libstdc++6 graphviz libgraphviz-dev
pip install --upgrade pip setuptools wheel
pip install tox
- name: Test with pytest
run:
tox -e py