Skip to content

Commit

Permalink
[FIX] add missing dot before script
Browse files Browse the repository at this point in the history
  • Loading branch information
manuelselbach committed Sep 20, 2023
1 parent 4d51109 commit 387bb26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 387bb26

Please sign in to comment.