Skip to content
This repository was archived by the owner on Apr 2, 2025. It is now read-only.

Convert backends from Protocol classes to sets of Callables #280

Convert backends from Protocol classes to sets of Callables

Convert backends from Protocol classes to sets of Callables #280

Workflow file for this run

name: PR Checks
on:
pull_request:
branches: ["main"]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
# cache: poetry
- run: python -m pip install poetry==1.7.1
- name: Install dependencies
run: poetry install --with=dev
- name: Lint code
run: |
python -m pip install pre-commit
pre-commit run --all-files
- name: Type-check code
run: poetry run mypy src
# - name: Run tests
# run: poetry run nox