blob: 71cb8686445941002f2f29c4ff6d9612d20ea61f [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
Davide Pesaventoc0bab4e2023-02-03 18:20:25 -05007permissions: {}
Davide Pesavento64fa0672023-01-15 23:02:24 -05008
Davide Pesaventoe8574692023-02-16 16:20:22 -05009env:
10 SPHINXOPTS: --color
11
Davide Pesavento64fa0672023-01-15 23:02:24 -050012jobs:
13 check:
14 runs-on: ubuntu-latest
15 steps:
Davide Pesaventoe8574692023-02-16 16:20:22 -050016 - name: Checkout repository
Davide Pesavento64fa0672023-01-15 23:02:24 -050017 uses: actions/checkout@v3
18 - name: Set up Python
19 uses: actions/setup-python@v4
20 with:
21 python-version: '3.10'
22 - name: Install dependencies
23 run: |
24 python -m pip install --upgrade pip
25 pip install -r requirements.txt
26 - name: Check external links
27 run: make linkcheck