debug cross co example in doc of cardio respi synchro and improve doc of other examples (remove typos) #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test on Ubuntu | |
on: | |
pull_request: | |
branches: [main] | |
types: [synchronize, opened, reopened, ready_for_review] | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Tools | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[test] | |
pip install . | |
- name: Pytest | |
run: | | |
pytest tests/ |