Skip to content

Blog post: Browsing curated databases #296

Blog post: Browsing curated databases

Blog post: Browsing curated databases #296

Workflow file for this run

name: continuous-integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
linkcheck:
runs-on: ubuntu-latest
timeout-minutes: 8
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: '3.11'
- name: Install python dependencies
run: |
pip install --upgrade pip
pip install -rrequirements.txt
- name: Run linkcheck
run: sphinx-build -b linkcheck docs/ docs/_build/linkcheck --color -q