Skip to content

More documentation for "sample frequency" #162

More documentation for "sample frequency"

More documentation for "sample frequency" #162

Workflow file for this run

name: Run tests
on:
pull_request:
branches:
- '*'
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-2019, windows-latest, macos-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: |
pip install pytest
pip install -e .
pip install -r requirements-test.txt
pytest