From 4b05d01d2eb0fa77cc3ac80e07fa6310877190d1 Mon Sep 17 00:00:00 2001 From: Ramon Smits Date: Fri, 11 Sep 2026 16:07:57 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Fix=20cloud=20database=20tests?= =?UTF-8?q?=20calling=20the=20removed=20tools/run-tests.ps1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The cloud-database-tests workflow still invoked tools/run-tests.ps1, which 9ceb32b22 deleted when ci.yml moved to Particular/run-tests-action. The workflow was never exercised before the 6.21.0 tag, so every cloud-tests job in the release run failed with 'The term ./tools/run-tests.ps1 is not recognized'. Use the same action ci.yml uses, passing both suites via its projects input. --- .github/workflows/cloud-database-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cloud-database-tests.yml b/.github/workflows/cloud-database-tests.yml index 11b6344555..fed3c0cdfd 100644 --- a/.github/workflows/cloud-database-tests.yml +++ b/.github/workflows/cloud-database-tests.yml @@ -132,7 +132,10 @@ jobs: - name: Wait for build wait: build - name: Run tests - run: ./tools/run-tests.ps1 -Projects "$Env:PERSISTENCE_PROJECT`n$Env:ACCEPTANCE_PROJECT" -MaxParallel 2 + uses: Particular/run-tests-action@v1.9.0 + with: + projects: ${{ env.PERSISTENCE_PROJECT }};${{ env.ACCEPTANCE_PROJECT }} + max-parallel: 2 env: ServiceControl_TESTS_FILTER: ${{ matrix.provider }} PARTICULARSOFTWARE_LICENSE: ${{ secrets.LICENSETEXT }}