Skip to content

Commit 8050be7

Browse files
Add link check GitHub action (#30)
* Remove Gander entry from README * Add link check GitHub action
1 parent 435b1f7 commit 8050be7

2 files changed

Lines changed: 18 additions & 11 deletions

File tree

.github/workflows/link-check.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Broken Link Check
2+
on:
3+
schedule:
4+
- cron: '0 0 * * *' # Run daily
5+
pull_request:
6+
branches: [ main ]
7+
push:
8+
branches: [ main ]
9+
10+
jobs:
11+
check-links:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Check for broken links
16+
uses: lycheeverse/lychee-action@v1
17+
with:
18+
args: --verbose --no-progress './**/*.md' './**/*.html'

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -94,17 +94,6 @@ Tags: app, API, Laravel
9494

9595
---
9696

97-
### Gander
98-
https://github.com/lewissteele/gander
99-
100-
Relational database management tool made using Laravel
101-
102-
Type: electron
103-
104-
Tags: app, mysql, laravel
105-
106-
---
107-
10897
### Hwei's Brush
10998
https://github.com/rico-vz/Hweis-Brush
11099

0 commit comments

Comments
 (0)