Move sphinx step below tests step as it used to be

This commit is contained in:
Mark Schmitt 2021-01-02 09:19:58 +01:00
parent b8b0b61e67
commit ef28ae8117

View File

@ -36,17 +36,17 @@ jobs:
- name: Gather pip requirements
run: |
pipenv lock -r > requirements.txt
- name: Insall pip requirements
- name: Install pip requirements
run: |
pip install -r requirements.txt
- name: Run sphinx
run: |
sphinx-build -b html ../docs ../docs/_build -W
- name: Execute Tests
run: |
cd src/
pytest --cov
pycodestyle
- name: Run sphinx
run: |
sphinx-build -b html ../docs ../docs/_build -W
- name: Execute coveralls
run: |
coveralls