Link Check #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Link Check | |
on: | |
workflow_dispatch: | |
schedule: | |
# Run weekly to check URL links still resolve | |
- cron: "0 8 * * WED" | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install python packages | |
uses: ./.github/actions/install_requirements | |
with: | |
requirements_file: requirements-dev-3.x.txt | |
install_options: -e .[dev] | |
artifact_name: link_check | |
- name: Check links | |
run: tox -e docs build -- -b linkcheck | |
- name: Keepalive Workflow | |
uses: gautamkrishnar/keepalive-workflow@v1 |