Skip to content

Introduce optional blessed backend #349

Introduce optional blessed backend

Introduce optional blessed backend #349

Workflow file for this run

name: ci
on: [pull_request]
jobs:
ci:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --with dev
- name: Static type checking
run: poetry run mypy .
if: runner.os != 'Windows'
- name: Run test
run: poetry run pytest