Skip to content

Commit

Permalink
PARTIAL #6 - Add Markdown links checker to avoid broken links in docu…
Browse files Browse the repository at this point in the history
…mentation
  • Loading branch information
Galileo-Galilei committed Feb 3, 2021
1 parent 1f8e715 commit 464697e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics --exclude kedro_mlflow/template/project/run.py
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --max-complexity=10 --max-line-length=127 --statistics --exclude kedro_mlflow/template/project/run.py
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics --exclude kedro_mlflow/template/project/run.py
- name: Check markdown links
uses: gaurav-nelson/github-action-markdown-link-check@v1
- name: Test with pytest and generate coverage report
run: |
pytest --cov=./ --cov-report=xml
Expand Down

0 comments on commit 464697e

Please sign in to comment.