Skip to content

fixed bug in plotting code #9

fixed bug in plotting code

fixed bug in plotting code #9

Workflow file for this run

name: Run tests
on: [push]
jobs:
example-1:
name: Testing (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10"]
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Check repo out
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
fetch-depth: 0
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run tests
shell: bash -l {0}
run: |
pytest -vv