BUGFIX: Replace deprecated usage of DBAL functions #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
strategy: | |
matrix: | |
php-versions: [ '8.1', '8.2', '8.3' ] | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:latest | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: eventstore | |
ports: | |
- 3306/tcp | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
postgres: | |
image: postgres:latest | |
env: | |
POSTGRES_USER: root | |
POSTGRES_PASSWORD: password | |
POSTGRES_DB: eventstore | |
ports: | |
- 5432/tcp | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3 | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: pdo_mysql, pdo_pgsql | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
# - name: Validate composer.json and composer.lock | |
# run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress | |
- name: Run tests (SQLIte) | |
run: composer run-script test | |
env: | |
DB_DSN: "sqlite:///events_test.sqlite" | |
- name: Run tests (MySQL) | |
run: composer run-script test | |
env: | |
DB_DSN: "pdo-mysql://root:[email protected]:${{ job.services.mysql.ports['3306'] }}/eventstore" | |
- name: Run tests (PostgreSQL) | |
run: composer run-script test | |
env: | |
DB_DSN: "pdo-pgsql://root:[email protected]:${{ job.services.postgres.ports['5432'] }}/eventstore" |