From 7faa9dbc64075af3d76d5348407eeee76c43a4f3 Mon Sep 17 00:00:00 2001 From: Jacob Kukuk Date: Tue, 19 Aug 2025 21:11:15 -0700 Subject: [PATCH] Add link check workflow --- .github/workflows/link-check.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/link-check.yml diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml new file mode 100644 index 0000000..67dc3fc --- /dev/null +++ b/.github/workflows/link-check.yml @@ -0,0 +1,18 @@ +name: Link Check + +on: + pull_request: + paths: + - 'profile/README.md' + - '.github/workflows/link-check.yml' + +jobs: + link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Check links in profile README + uses: lycheeverse/lychee-action@v1 + with: + args: '--verbose profile/README.md' + fail: true