Skip to content

Bump lycheeverse/lychee-action from 1.10.0 to 2.0.2 #38

Bump lycheeverse/lychee-action from 1.10.0 to 2.0.2

Bump lycheeverse/lychee-action from 1.10.0 to 2.0.2 #38

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@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install .
pip install -r docs/requirements.txt
- name: Test build html
run: |
cd docs
make html SPHINXOPTS="-W"