Skip to content

changesfile and bump to 0.1.10 (#170) #117

changesfile and bump to 0.1.10 (#170)

changesfile and bump to 0.1.10 (#170) #117

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