Skip to content

Check Docs

Check Docs #682

Workflow file for this run

name: Check Docs
on:
pull_request:
push:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 */72 * * *'
jobs:
build:
runs-on: ${{ matrix.os }}
environment:
name: checkdocs
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2.5.0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4.3.0
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[test]"
- name: Check Docs
run: |
python setup.py checkdocs