Skip to content

Merge pull request #45 from abearab/main #95

Merge pull request #45 from abearab/main

Merge pull request #45 from abearab/main #95

Workflow file for this run

name: Testing
on: [push]
jobs:
linux-pip-install:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install Package
run: |
pip install -e .
- name: Pytest
run: |
pip install pytest
pytest -v