From 99b49f0b8f062e3a4b1172714b284328e113618c Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Fri, 22 Sep 2023 14:51:42 +0300 Subject: [PATCH] Allow `pack` job to run in parallel to `test` --- .github/workflows/main.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a40d122..4fdca9f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,7 +42,6 @@ jobs: token: ${{ secrets.CODECOV_TOKEN }} pack: - needs: test runs-on: windows-latest permissions: actions: write @@ -83,7 +82,9 @@ jobs: deploy: if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} - needs: pack + needs: + - test + - pack runs-on: ubuntu-latest permissions: actions: read