Skip to content

Commit

Permalink
remove mariadb from github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
abbasudo committed Sep 20, 2024
1 parent 674078b commit e83649e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
db: [ sqlite, mysql, pgsql, mariadb ]
db: [ sqlite, mysql, pgsql ]
php: [ 8.2, 8.3 ]
prefer: [ lowest, stable ]

Expand Down Expand Up @@ -57,17 +57,17 @@ jobs:
sudo -u postgres psql -c "CREATE USER test_user WITH PASSWORD 'passw0rd!';"
sudo -u postgres psql -c "ALTER DATABASE test_db OWNER TO test_user;"
- name: Configure MariaDB
if: matrix.db == 'mariadb'
uses: getong/[email protected]
with:
host port: 3800
container port: 3307
character set server: 'utf8'
collation server: 'utf8_general_ci'
mariadb version: '10.4.10'
mysql database: 'test_db'
mysql root password: 'root'
# - name: Configure MariaDB
# if: matrix.db == 'mariadb'
# uses: getong/[email protected]
# with:
# host port: 3800
# container port: 3307
# character set server: 'utf8'
# collation server: 'utf8_general_ci'
# mariadb version: '10.4.10'
# mysql database: 'test_db'
# mysql root password: 'root'

- name: Run PHPUnit tests
env:
Expand Down

0 comments on commit e83649e

Please sign in to comment.