blob: 4af48ecdc3231cff198262064318f6f99f92046e [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
9jobs:
10 check:
11 runs-on: ubuntu-latest
12 steps:
13 - name: Checkout
14 uses: actions/checkout@v3
15 - name: Set up Python
16 uses: actions/setup-python@v4
17 with:
18 python-version: '3.10'
19 - name: Install dependencies
20 run: |
21 python -m pip install --upgrade pip
22 pip install -r requirements.txt
23 - name: Check external links
24 run: make linkcheck
25 env:
26 SPHINXOPTS: --color