Skip to content

Commit

Permalink
Introduce link checker job
Browse files Browse the repository at this point in the history
  • Loading branch information
exoego committed Dec 21, 2022
1 parent 58ae9c9 commit db5cd4a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/linkcheck.yml
@@ -0,0 +1,21 @@
name: Link checker

on: push

#env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
#
jobs:
build:
name: Build and Test
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: 'mlc_config.json'
folder-path: 'docs' # comma separated
max-depth: 2
# check-modified-files-only: ${{ github.event_name == 'pull_request' && 'yes' || 'no' }}
base-branch: main

0 comments on commit db5cd4a

Please sign in to comment.