Skip to content

chore: add and fix unit tests #2

chore: add and fix unit tests

chore: add and fix unit tests #2

Workflow file for this run

name: Run Unit Tests
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f pyproject.toml ]; then pip install poetry && poetry install; fi
- name: Run tests
run: |
pytest