Skip to content

all_url_check

all_url_check #14599

Workflow file for this run

---
name: all_url_check
'on':
workflow_dispatch:
push:
schedule:
- cron: '25 */3 * * *'
permissions:
contents: read
jobs:
run_lychee:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: link_check with lychee-action
id: link_check
uses: lycheeverse/lychee-action@e7477775783ea5526144ba13e8db5eec57747ce8 # v2.9.0
with:
args: >
--verbose
--insecure
--no-progress
--timeout 10
**/*.tex **/*.md
fail: true
...