Fix Bruggeman EMA #212
Workflow file for this run
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: Dev requirements for target python | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
test_python: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Upgrade pip | |
run: | | |
python -m pip install --upgrade pip | |
- name: Install package (no deps) | |
run: | | |
pip install --no-deps .[fitting,testing] | |
- name: Install dev requirements | |
run: | | |
python -m pip install -r requirements/dev-requirements.txt | |
- name: Test with pytest | |
run: | | |
pytest --nbmake |