blob: 4d39d1a665e5db30b8954f9c65a45f384ee62dbe [file] [log] [blame]
Davide Pesavento64fa0672023-01-15 23:02:24 -05001name: Check links
2on:
3 schedule:
4 - cron: '0 12 * * 3'
5 workflow_dispatch:
6
7permissions:
8 contents: read
9
10jobs:
11 check:
12 runs-on: ubuntu-latest
13 steps:
14 - name: Checkout
15 uses: actions/checkout@v3
16 - name: Set up Python
17 uses: actions/setup-python@v4
18 with:
19 python-version: '3.10'
20 - name: Install dependencies
21 run: |
22 python -m pip install --upgrade pip
23 pip install -r requirements.txt
24 - name: Check external links
25 run: make linkcheck
26 env:
27 SPHINXOPTS: --color