2
0
mirror of https://github.com/curl/curl.git synced 2025-04-24 16:40:32 +08:00

linkcheck.yml: add CI job that checks markdown links

Closes 
This commit is contained in:
Daniel Stenberg 2021-12-16 23:30:43 +01:00
parent 4bf36e2b2d
commit ed0bc61e31
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

23
.github/workflows/linkcheck.yml vendored Normal file

@ -0,0 +1,23 @@
# Docs: https://github.com/marketplace/actions/markdown-link-check
name: Markdown links
on:
# Trigger the workflow on push or pull requests, but only for the
# master branch
push:
branches:
- master
- '*/ci'
pull_request:
branches:
- master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
use-quiet-mode: 'yes'