From a10ef573053149d0d79b51f8a12133c0c7f603bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Paradzi=C5=84ski?= Date: Mon, 19 Sep 2022 11:25:50 +0200 Subject: [PATCH] Use github-action-markdown-link-check to find broken links --- .github/workflows/scala.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 8a60c45..fc5c733 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -11,9 +11,7 @@ permissions: jobs: build: - runs-on: ubuntu-latest - steps: - uses: actions/checkout@v4 - name: Set up JDK @@ -24,3 +22,11 @@ jobs: cache: 'sbt' - name: Run tests run: sbt test + + markdown-link-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: gaurav-nelson/github-action-markdown-link-check@v1 + with: + use-verbose-mode: 'yes'