Skip to content

feat: Bump min Python version #16

feat: Bump min Python version

feat: Bump min Python version #16

Workflow file for this run

name: CI
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: Format with black
run: poetry run black ./src
- name: Lint with flake8
run: poetry run flake8
- name: Run tests
run: poetry run pytest --cov