Skip to content

Update README.md

Update README.md #45

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
python-version: ["3.10","3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install numpy Cython
pip install .
continue-on-error: true
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest $(git ls-files 'tests/*.py') --cov=com --cov-report=xml --cov-report=html
continue-on-error: true