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