Skip to content

Bump lycheeverse/lychee-action from 1.7.0 to 1.8.0 (#416) #229

Bump lycheeverse/lychee-action from 1.7.0 to 1.8.0 (#416)

Bump lycheeverse/lychee-action from 1.7.0 to 1.8.0 (#416) #229

Workflow file for this run

# Build html docs. Any warning building the docs will produce an error.
name: Build docs
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
pip install .
pip install -r docs/requirements.txt
- name: Test build html
run: |
cd docs
make html SPHINXOPTS="-W"