mirror of
https://github.com/redhat-actions/podman-login.git
synced 2025-02-23 10:31:21 +01:00
19 lines
347 B
YAML
19 lines
347 B
YAML
![]() |
name: Link checker
|
||
|
on:
|
||
|
push:
|
||
|
paths:
|
||
|
- '**.md'
|
||
|
pull_request:
|
||
|
paths:
|
||
|
-'**.md'
|
||
|
|
||
|
jobs:
|
||
|
markdown-link-check:
|
||
|
name: Check links in markdown
|
||
|
runs-on: ubuntu-20.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||
|
with:
|
||
|
use-verbose-mode: true
|