Skip to content

docs: update README and API reference for new features #7

docs: update README and API reference for new features

docs: update README and API reference for new features #7

Workflow file for this run

name: Run Pytest Tests
on:
push:
branches: [ "master" ]
paths:
- "tests/**"
- ".github/workflows/tests.yml"
- "**.py"
pull_request:
branches: [ "master" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
env:
API_KEY: ${{ secrets.API_KEY }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install -e .
- name: Run tests
run: |
pytest tests/