Skip to content

Commit

Permalink
[TASK] Added CI postgres test also in GitHub Action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
hojalatheef committed Sep 20, 2024
1 parent dc37208 commit 3063441
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ jobs:
- name: 'Execute unit tests'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit

- name: 'Execute functional tests'
- name: 'Execute functional tests with mysql database'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mysql -s functional

- name: 'Execute functional tests'
- name: 'Execute functional tests with mariadb database'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional

- name: 'Execute functional tests with postgres database'
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional

0 comments on commit 3063441

Please sign in to comment.