diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 64190e0..5da4af1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - db: [ sqlite, mysql, pgsql, mariadb ] + db: [ sqlite, mysql, pgsql ] php: [ 8.2, 8.3 ] prefer: [ lowest, stable ] @@ -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/mariadb-action@v1.11 - 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/mariadb-action@v1.11 +# 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: