Skip to content

Update mkdocstrings requirement from ^0.25.1 to >=0.25.1,<0.28.0 #26

Update mkdocstrings requirement from ^0.25.1 to >=0.25.1,<0.28.0

Update mkdocstrings requirement from ^0.25.1 to >=0.25.1,<0.28.0 #26

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
strategy:
max-parallel: 4
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.python-version == '3.12' }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install
- name: Run tests
run: |
poetry run pytest