Skip to content

chore(workflow): update lint workflow #196

chore(workflow): update lint workflow

chore(workflow): update lint workflow #196

Workflow file for this run

name: Build Docs
on:
push:
pull_request:
workflow_dispatch:
jobs:
docs:
name: Dry-run docs build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Initialize Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Build docs
run: sphinx-build docs docs/_build