Skip to content

Update README.md

Update README.md #236

Workflow file for this run

name: Tests
on:
push:
workflow_dispatch:
schedule: # Run once a week to detect any regressions
- cron: '0 0 * * 1'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.x"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Run tests - Python ${{ matrix.python-version }}
run: |
pip install .[test]
python -m pytest