Merge pull request #286 from fooof-tools/devdemo #222
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
# This workflow runs CI tests: it installs Python dependencies and run tests across a variety of Python versions | |
name: build | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
# Tag ubuntu version to 20.04, in order to support python 3.6 | |
# See issue: https://github.com/actions/setup-python/issues/544 | |
# When ready to drop 3.6, can revert from 'ubuntu-20.04' -> 'ubuntu-latest' | |
runs-on: ubuntu-20.04 | |
env: | |
MODULE_NAME: fooof | |
strategy: | |
matrix: | |
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"] | |
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 pytest | |
pip install pytest-cov | |
pip install -r requirements.txt | |
pip install -r optional-requirements.txt | |
- name: Test with pytest | |
run: | | |
pytest --cov=./ | |
- name: Run doctests | |
run: | | |
pytest --doctest-modules --ignore=$MODULE_NAME/tests $MODULE_NAME | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |