Skip to content

DOC: add html version of readme #23

DOC: add html version of readme

DOC: add html version of readme #23

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
pull_request:
jobs:
run-unittests:
name: Run Unit Tests via Pytest
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Verify Python Version
run: python --version
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
# See pyproject.toml for configs
- name: Run Tests
run: |
pytest ./ --disable-warnings --cov=./ --cov-report=xml
- name: Ensure complete
run: echo "Unit Tests Complete."