Skip to content

Fix README.rst formatting #11

Fix README.rst formatting

Fix README.rst formatting #11

Workflow file for this run

name: Tests and Checks
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Run checks & tests
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Run ruff
uses: astral-sh/ruff-action@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --upgrade-strategy=eager --pre -e .[test]
- name: Run tests
run: |
pytest -v