Skip to content

periodic_link_check

periodic_link_check #5

Workflow file for this run

---
name: periodic_link_check
on:
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 0 1,15 * *'
jobs:
link_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Upgrade pip and install Tox
run: |
python -m pip install --upgrade pip
python -m pip install tox
- name: Check links
run: tox -e py310-linkcheck