Skip to content

Rework find_and_delete_entries (bugfix and better testing) #119

Rework find_and_delete_entries (bugfix and better testing)

Rework find_and_delete_entries (bugfix and better testing) #119

Workflow file for this run

name: Unit tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
- name: Unit tests
run: |
make test-unit