Skip to content

Create Github workflow to run unit tests #2

Create Github workflow to run unit tests

Create Github workflow to run unit tests #2

Workflow file for this run

name: Unit Tests
on:
pull_request:
types:
- opened
- synchronize
- closed
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install dependencies
run: |
pip install -e .
pip install -r testing-requirements.txt
pytest -s tests