Skip to content

Test on platforms #1173

Test on platforms

Test on platforms #1173

# DO NOT EDIT THIS FILE!
#
# It's auto-generated by sonata-project/dev-kit package.
name: Test on platforms
on:
schedule:
- cron: '30 0 * * *'
push:
branches:
- 1.x
- 2.x
pull_request:
jobs:
test-mysql:
name: PHP ${{ matrix.php-version }} + MySQL ${{ matrix.mysql-version }} + ${{ matrix.dependencies }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allowed-to-fail }}
env:
DATABASE_URL: mysql://root@127.0.0.1:3306/sonata_tests
services:
mysql:
image: mysql:${{ matrix.mysql-version }}
options: >-
--health-cmd "mysqladmin ping --silent"
-e MYSQL_ALLOW_EMPTY_PASSWORD=yes
-e MYSQL_DATABASE=sonata_tests
ports:
- 3306:3306
strategy:
matrix:
php-version:
- '8.3'
mysql-version:
- '5.7'
- '8.0'
dependencies: [highest]
allowed-to-fail: [false]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
tools: composer:v2
extensions: mysqli, pdo_mysql
- name: Add PHPUnit matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install Composer dependencies (${{ matrix.dependencies }})
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}
- name: Run Tests
run: make test
test-postgres:
name: PHP ${{ matrix.php-version }} + PostgreSQL ${{ matrix.postgres-version }} + ${{ matrix.dependencies }}
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.allowed-to-fail }}
env:
DATABASE_URL: postgresql://postgres:postgres@127.0.0.1:5432/postgres?serverVersion=${{ matrix.postgres-version }}&charset=utf8
services:
postgres:
image: postgres:${{ matrix.postgres-version }}
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd "pg_isready"
ports:
- 5432:5432
strategy:
matrix:
php-version:
- '8.3'
postgres-version:
- '13'
- '14'
- '15'
dependencies: [highest]
allowed-to-fail: [false]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
tools: composer:v2
- name: Add PHPUnit matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install Composer dependencies (${{ matrix.dependencies }})
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependencies }}
- name: Run Tests
run: make test