Skip to content

start with logging class #33

start with logging class

start with logging class #33

Workflow file for this run

name: automated checks
on:
push:
workflow_dispatch:
# for security reasons the github actions are pinned to specific release versions
jobs:
link_checker:
name: Link checker
runs-on: ubuntu-24.04
steps:
- name: Checkout markdown
uses: actions/checkout@v4.1.1
- name: Link Checker
uses: lycheeverse/lychee-action@v1.10.0
with:
args: --no-progress --max-retries 5 './docs/**/*.md'
fail: true
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}