blob: 45c0e2090cef87f1a73817812482e91c495c322e [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:
Davide Pesaventoc73673d2023-02-16 16:34:11 -050021 python-version: '3.11'
Davide Pesavento64fa0672023-01-15 23:02:24 -050022 - name: Install dependencies
23 run: |
24 python -m pip install --upgrade pip
Davide Pesaventoc73673d2023-02-16 16:34:11 -050025 python -m pip install -r requirements.txt
Davide Pesavento64fa0672023-01-15 23:02:24 -050026 - name: Check external links
27 run: make linkcheck