Modify pyproject.toml #138
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: QENS models on ubuntu | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: [3.7, 3.8, 3.9, "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install . | |
- name: lint with flake8 | |
run: | | |
pip install flake8 | |
python -m flake8 ./QENSmodels/*py | |
python -m flake8 ./tests/*py | |
python -m flake8 ./docs/examples/using_mantid/*py | |
- name: mypy | |
run: | | |
python -m pip install mypy | |
# mypy ./QENSmodels/*py --ignore-missing-imports | |
- name: run unitests | |
run: | | |
python -m unittest discover tests | |
- name: run doctests | |
run: | | |
pip install pytest | |
pytest --doctest-modules ./QENSmodels | |
- name: build documentation | |
run: | | |
sudo apt install pandoc | |
pip install sphinx nbsphinx sphinx_rtd_theme | |
pip install ".[examples]" | |
sphinx-build -nT -b html docs docs/_build/html | |