Skip to content

Feat/update min python version #26

Feat/update min python version

Feat/update min python version #26

Workflow file for this run

name: CI workflow
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: python -m pip install uv
- name: Install dependencies
run: uv sync --extra all
- name: Perform type checking with mypy
run: mypy src
- name: Run tests
run: poetry run pytest --cov=src