Skip to content

Update table

Update table #63

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pyrocs
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest --cov=. --cov-config=.coveragerc --cov-report term-missing .