Skip to content

Feat/update min python version #25

Feat/update min python version

Feat/update min python version #25

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.10", "3.11", "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 poetry
- name: Install dependencies
run: poetry install
- name: Lint and format with ruff
run: |
python -m ruff check --fix
python -m ruff format
- name: Auto-commit ruff changes
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "Lint and format with ruff"
- name: Perform type checking with mypy
run: mypy src
- name: Run tests
run: poetry run pytest --cov=src