Delete link-check.yml

This commit is contained in:
Indrek Haav 2023-01-30 14:31:19 +02:00 committed by GitHub
parent 13f4ac4d27
commit a950b29f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 26 deletions

View File

@ -1,26 +0,0 @@
name: link-check
on:
push:
paths:
- '**/*.md'
pull_request:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Check links
id: lc
uses: peter-evans/link-checker@v1.2.2
with:
args: -v -r *
- name: Fail on invalid links
run: exit ${{ steps.lc.outputs.exit_code }}