mirror of
https://github.com/MunGell/awesome-for-beginners.git
synced 2026-05-06 15:17:06 +00:00
Merge pull request #1897 from This-Is-Ram/add-link-checker
Feat: Add automated link checker workflow
This commit is contained in:
commit
b7d05f3bd8
24
.github/workflows/link-check.yml
vendored
Normal file
24
.github/workflows/link-check.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: Link Checker
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
schedule:
|
||||
- cron: '0 0 * * 0'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
check-links:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run Lychee link checker
|
||||
uses: lycheeverse/lychee-action@v2
|
||||
with:
|
||||
args: >
|
||||
--verbose
|
||||
--no-progress
|
||||
--timeout 10
|
||||
data.json
|
||||
Loading…
x
Reference in New Issue
Block a user