Skip to content

Commit

Permalink
Added check-docs-source-in-git to github worflows
Browse files Browse the repository at this point in the history
Added check-docs-source-in-git to github worflows sanity.xml - Fixes #1552
  • Loading branch information
Prome88 authored and atodorov committed Apr 30, 2020
1 parent 5ba4a3f commit 74b42be
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/sanity.yml
@@ -0,0 +1,26 @@
name: sanity

on:
push:
branches: master
pull_request:

jobs:
check-docs-source-in-git:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [3.7]

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: check-docs-source-in-git
run: |
sudo apt install python-pydot python-pydot-ng graphviz
pip install -r requirements/readthedocs.txt
make check-docs-source-in-git

0 comments on commit 74b42be

Please sign in to comment.