From 1c297b43be9c151947531e01f1d6ddf3a328f107 Mon Sep 17 00:00:00 2001 From: Matthias Endler Date: Tue, 17 Jan 2023 15:02:30 +0100 Subject: [PATCH] Run publish-check in parallel with other jobs (#922) I don't see the reason why publish-check has to wait for the other jobs to complete. After all, it's yet another "lint". Running it in parallel might shave of a significant amount of time from our CI builds. --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4ea2f1..216b5c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,9 +50,6 @@ jobs: args: --all-targets -- --deny warnings publish-check: - needs: - - test - - lint runs-on: ubuntu-latest steps: - uses: actions/checkout@v1