Skip to content

Commit

Permalink
Merge pull request #25 from forchette/feat-ci-linker-f321
Browse files Browse the repository at this point in the history
ci: add linker workflow to check against dead links
  • Loading branch information
paolapog committed Jan 10, 2024
2 parents 7a231b1 + 9bebe80 commit d0e3cb7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/linker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: linker

on:
push:
branches: [main]

pull_request:
branches: [main]

jobs:
link:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Link Checker
uses: lycheeverse/lychee-action@v1.2.0

with:
fail: true

0 comments on commit d0e3cb7

Please sign in to comment.