From 0b3f6de015f2c6d28ca1d5ecefd5881ed88467a9 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Thu, 22 Feb 2024 09:17:18 +0100 Subject: [PATCH] ci: Merge docs-spellcheck and docs-dictcheck jobs Both jobs run really quick, running them separate is just a waste of resources. Plus, they are semantically closely related anyway. --- .github/workflows/docs.yaml | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index f5a23825b..ec481e061 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -32,6 +32,7 @@ jobs: - run: postgrest-docs-build - run: git diff --exit-code HEAD locales || echo "Please commit changes to the locales/ folder after running postgrest-docs-build." + spellcheck: name: Spellcheck runs-on: ubuntu-latest @@ -41,18 +42,11 @@ jobs: uses: ./.github/actions/setup-nix with: tools: docs - - run: postgrest-docs-spellcheck + - name: Run spellcheck + run: postgrest-docs-spellcheck + - name: Run dictcheck + run: postgrest-docs-dictcheck - dictcheck: - name: Dictcheck - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Setup Nix Environment - uses: ./.github/actions/setup-nix - with: - tools: docs - - run: postgrest-docs-dictcheck linkcheck: name: Linkcheck