Skip to content

ADDED github actions to run the test suite #1

ADDED github actions to run the test suite

ADDED github actions to run the test suite #1

Workflow file for this run

name: Python Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.8' # Specify the Python version
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: |
PYTHONPATH=. poetry run pytest tests