Link Check #38
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
# ********** Please don't edit this file! | |
# ********** It has been generated automatically by dae_devops version 0.5.3. | |
# ********** For repository_name rockingester | |
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@v3 | |
- name: Install python packages | |
uses: ./.github/actions/install_requirements | |
with: | |
requirements_file: requirements-dev-3.x.txt | |
install_options: -e .[dev] | |
- name: Check links | |
run: tox -e docs build -- -b linkcheck | |
# dae_devops_fingerprint b5425cbfe1a9bfb1783b8b38fcc11563 |