Skip to content

chore: update README to reflect python 3.12+ #27

chore: update README to reflect python 3.12+

chore: update README to reflect python 3.12+ #27

Workflow file for this run

name: Lint and Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Lint and Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install --upgrade pip
make install-dev
- name: Lint
run: make lint
- name: Test and check coverage
run: make coverage