Skip to content

Add github action

Add github action #3

Workflow file for this run

---
name: Run Tests
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Python version
uses: actions/setup-python@v3
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install .
pip install -r requirements.txt
- name: Run Tests
run: python -m unittest