Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 51 additions & 9 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Continuous Integration"
name: "CI"

on:
pull_request:
Expand Down Expand Up @@ -28,7 +28,14 @@ on:

jobs:
phpunit-smoke-check:
name: "PHPUnit with SQLite"
name: >
PHPUnit with SQLite -
${{ format('OS {0} - PHP {1} - ext. {2} - deps {3}',
matrix.os || 'Ø',
matrix.php-version || 'Ø',
matrix.extension || 'Ø',
matrix.dependency-versions || 'Ø'
) }}
uses: ./.github/workflows/phpunit-sqlite.yml
with:
os: ${{ matrix.os }}
Expand Down Expand Up @@ -59,7 +66,13 @@ jobs:
extension: "sqlite3"

phpunit-oracle:
name: "PHPUnit with Oracle"
name: >
PHPUnit with Oracle -
${{ format('PHP {0} - Oracle {1} - ext. {2}',
matrix.php-version || 'Ø',
matrix.oracle-version || 'Ø',
matrix.extension || 'Ø'
) }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-oracle.yml
with:
Expand Down Expand Up @@ -91,7 +104,13 @@ jobs:
extension: oci8

phpunit-postgres:
name: "PHPUnit with PostgreSQL"
name: >
PHPUnit with PostgreSQL -
${{ format('PHP {0} - PG {1} - ext. {2}',
matrix.php-version || 'Ø',
matrix.postgres-version || 'Ø',
matrix.extension || 'Ø'
) }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-postgres.yml
with:
Expand Down Expand Up @@ -119,7 +138,13 @@ jobs:
extension: "pdo_pgsql"

phpunit-mariadb:
name: "PHPUnit with MariaDB"
name: >
PHPUnit with MariaDB -
${{ format('PHP {0} - Maria {1} - ext. {2}',
matrix.php-version || 'Ø',
matrix.mariadb-version || 'Ø',
matrix.extension || 'Ø'
) }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-mariadb.yml
with:
Expand Down Expand Up @@ -153,7 +178,14 @@ jobs:
extension: "pdo_mysql"

phpunit-mysql:
name: "PHPUnit with MySQL"
name: >
PHPUnit with MySQL -
${{ format('PHP {0} - MySQL {1} - ext. {2} - suffix {3}',
matrix.php-version || 'Ø',
matrix.mysql-version || 'Ø',
matrix.extension || 'Ø',
matrix.config-file-suffix || 'Ø'
) }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-mysql.yml
with:
Expand Down Expand Up @@ -187,7 +219,13 @@ jobs:
extension: "pdo_mysql"

phpunit-mssql:
name: "PHPUnit with SQL Server"
name: >
PHPUnit with SQL Server -
${{ format('PHP {0} - ext. {1} - collation. {2}',
matrix.php-version || 'Ø',
matrix.extension || 'Ø',
matrix.collation || 'Ø'
) }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-sqlserver.yml
with:
Expand All @@ -214,7 +252,9 @@ jobs:
extension: "pdo_sqlsrv"

phpunit-db2:
name: "PHPUnit with Db2"
name: >
PHPUnit with Db2 -
${{ matrix.php-version || 'Ø' }}
needs: "phpunit-smoke-check"
uses: ./.github/workflows/phpunit-db2.yml
with:
Expand All @@ -228,7 +268,9 @@ jobs:
- "8.4"

development-deps:
name: "PHPUnit with PDO_SQLite and development dependencies"
name: >
PHPUnit with PDO_SQLite and development dependencies -
${{ matrix.php-version || 'Ø' }}
runs-on: "ubuntu-24.04"

strategy:
Expand Down
Loading