From ba20166c1603e067b6cffdcdafeeb1bed5237d4e Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Wed, 17 Jan 2024 19:23:16 +0100 Subject: [PATCH] CI: use -q flag for linkcheck --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a0de56a..38ef31b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: python -m sphinx -W --keep-going --color -d _build/doctrees/ . _build/html/ -b html - name: Check links run: | - python -m sphinx -W --keep-going --color -d _build/doctrees/ . _build/linkcheck/ -b linkcheck + python -m sphinx -W --keep-going --color -d _build/doctrees/ . _build/linkcheck/ -b linkcheck -q - name: Upload results uses: actions/upload-artifact@v3 if: ${{ success() || failure() }}