From 387bb26d3513c839e8256e5253fa20421a95f3b3 Mon Sep 17 00:00:00 2001 From: Manuel Selbach Date: Wed, 20 Sep 2023 17:51:24 +0200 Subject: [PATCH] [FIX] add missing dot before script --- .github/workflows/Tests.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Tests.yaml b/.github/workflows/Tests.yaml index fe7791c..2ff1412 100644 --- a/.github/workflows/Tests.yaml +++ b/.github/workflows/Tests.yaml @@ -67,13 +67,13 @@ jobs: run: .Build/bin/phpcs --runtime-set ignore_warnings_on_exit true - name: Unit tests - run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit + run: .Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit - name: Functional tests with mariadb - run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional + run: .Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional - name: Functional tests with postgres - run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional + run: .Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional - name: Functional tests with sqlite - run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d sqlite -s functional + run: .Build/Scripts/runTests.sh -p ${{ matrix.php }} -d sqlite -s functional