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.
This commit is contained in:
Leroy Hopson 2024-03-30 02:32:23 +13:00
parent cf0b43f19d
commit f9f055f08e
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA

View file

@ -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