Skip to content

Update README.md

Update README.md #23

Workflow file for this run

# PyTest workflow
name: Test
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [ ubuntu-latest, macOS-latest, windows-latest ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: setup.py
- name: Install dependencies
run: |
# Install local package with tests dependencies extras
python -m pip install --upgrade pip
pip install -e ".[tests]"
- name: Test with pytest
run: |
pytest --cov=./ --cov-report=xml -n auto
- name: Codecov
uses: codecov/[email protected]