Skip to content

build(deps): bump convert_case from 0.9.0 to 0.10.0 #947

build(deps): bump convert_case from 0.9.0 to 0.10.0

build(deps): bump convert_case from 0.9.0 to 0.10.0 #947

Workflow file for this run

name: Check Markdown
# This workflow checks that all links in the documentation are valid.
# It does this for markdown files.
# We prefer lycheeverse because it is faster, but doesn't support adoc files yet(https://github.com/lycheeverse/lychee/issues/291)
# Because of that, we use linkspector for adoc files and lychee for md files.
on:
push:
branches: [main, v*]
pull_request:
branches: [main, v*]
jobs:
check-links-md:
name: Check Markdown Links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Link Checker
uses: lycheeverse/lychee-action@v2
with:
args: --no-progress './**/*.md'
fail: true