Skip to content

chore(deps): Bump readthedocs-sphinx-search from 0.1.2 to 0.3.2 #118

chore(deps): Bump readthedocs-sphinx-search from 0.1.2 to 0.3.2

chore(deps): Bump readthedocs-sphinx-search from 0.1.2 to 0.3.2 #118

Workflow file for this run

name: Python Test CI
on:
pull_request:
jobs:
ci:
name: Run test ci on python ${{ matrix.py }}
runs-on: ubuntu-latest
strategy:
matrix:
py:
- "3.9"
- "3.10"
- "3.11"
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Setup python ${{ matrix.py }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.py }}
cache: 'poetry'
- name: Install dependencies
run: poetry install --only test
- name: Run tests
run: poetry run tox