Skip to content

version 0.1.1 | updated to python3.12 #8

version 0.1.1 | updated to python3.12

version 0.1.1 | updated to python3.12 #8

Workflow file for this run

name: unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: [3.12.3]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --with dev
- name: Run tests
run: |
poetry run pytest