Skip to content

style: README wording #170

style: README wording

style: README wording #170

Workflow file for this run

name: pytest
on:
push
jobs:
tests:
name: Python 3.13
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run pytest
run: |
python -m pytest -vv