Skip to content

Update README.md

Update README.md #44

Workflow file for this run

name: Python Unit Tests
on: [push, pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install -e ."[dev, test]"
- name: Run Unit Tests
run: |
python -m unittest discover