Skip to content

abandon python3.8 (#171) #120

abandon python3.8 (#171)

abandon python3.8 (#171) #120

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