FEATURE: Refactor code to work with wwwision/dcb-library #19
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.2', '8.3' ] | |
runs-on: ubuntu-latest | |
services: | |
mysql: | |
image: mysql:latest | |
env: | |
MYSQL_ALLOW_EMPTY_PASSWORD: false | |
MYSQL_ROOT_PASSWORD: password | |
MYSQL_DATABASE: dcb | |
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: dcb | |
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_sqlite, 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: Static Analysis (PHPStan) | |
run: composer run-script test-phpstan | |
- name: Static Analysis (Code Sniffer) | |
run: composer run-script test-cs | |
- name: Behat tests (SQLite) | |
run: composer run-script test-behat | |
env: | |
DCB_TEST_DSN: "pdo-sqlite:///events.sqlite" | |
- name: Behat tests (MySQL) | |
run: composer run-script test-behat | |
env: | |
DCB_TEST_DSN: "pdo-mysql://root:[email protected]:${{ job.services.mysql.ports['3306'] }}/dcb" | |
- name: Behat tests (PostgreSQL) | |
run: composer run-script test-behat | |
env: | |
DCB_TEST_DSN: "pdo-pgsql://root:[email protected]:${{ job.services.postgres.ports['5432'] }}/dcb" |