From f9f055f08e79e5beecb8bc4877eb346250147e2e Mon Sep 17 00:00:00 2001 From: Leroy Hopson Date: Sat, 30 Mar 2024 02:32:23 +1300 Subject: [PATCH] fix(ci): make tests need builds to complete The wait for action is not reliable, so tests are running before builds have completed. By adding the explicit needs, tests will run at the right time, but it will make workflow runs a bit slower. --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 27671bb..6088f90 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -235,6 +235,7 @@ jobs: test: name: Test (${{ matrix.platform }}, ${{ matrix.arch }}, ${{ matrix.godot-version }}) + needs: [build-linux, build-other-platforms] runs-on: ${{ matrix.os }} strategy: fail-fast: false