From 5e26014daec74e866da327b25e88be8fdecf5050 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Wed, 3 Jul 2024 15:33:47 -0300 Subject: [PATCH] check links on pages build --- .github/workflows/pages.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 7585af8b4..708083e4c 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -69,3 +69,17 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v2 + + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v5 + with: + python-version: ${{ matrix.python-version }} + + - name: Install linkchecker + run: | + python -m pip install --upgrade pip + pip install linkchecker + + - name: Run linkchecker + run: | + linkchecker https://aider.chat