From f58a8edac68b016747dc707e81d1f05642d7089e Mon Sep 17 00:00:00 2001 From: Igor Ilic Date: Tue, 3 Jun 2025 20:54:25 +0200 Subject: [PATCH] refactor: set proper GH action order to have test be valid --- .github/workflows/test_suites.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_suites.yml b/.github/workflows/test_suites.yml index ba27737c2..3bea978fa 100644 --- a/.github/workflows/test_suites.yml +++ b/.github/workflows/test_suites.yml @@ -47,7 +47,7 @@ jobs: relational-db-migration-tests: name: Relational DB Migration Tests - needs: [ basic-tests, e2e-tests ] + needs: [ basic-tests, e2e-tests, graph-db-tests] uses: ./.github/workflows/relational_db_migration_tests.yml secrets: inherit @@ -79,7 +79,7 @@ jobs: db-examples-tests: name: DB Examples Tests - needs: [basic-tests, e2e-tests] + needs: [vector-db-tests, graph-db-tests, relational-db-migration-tests] uses: ./.github/workflows/db_examples_tests.yml secrets: inherit