Skip to content

all_url_check

all_url_check #9573

Workflow file for this run

---
name: all_url_check
'on':
workflow_dispatch:
push:
schedule:
- cron: '30 2 * * *'
permissions:
contents: read
jobs:
run_lychee:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: link_check with lychee-action
id: link_check
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0
with:
args: >
--verbose
--insecure
--no-progress
--accept 200,999
**/*.tex **/*.md **/*.py
fail: true
...