Skip to content

chore: add and fix unit tests #3

chore: add and fix unit tests

chore: add and fix unit tests #3

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: |
poetry install
- name: Run tests
run: |
pytest