Skip to content

Added unit test action #1

Added unit test action

Added unit test action #1

Workflow file for this run

name: Run unit tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: action/setup-python@v4
- name: Install Dependencies
run: pip install -r requirements.txt
- name: Run Tests
run: python -m unittest