Skip to content

Merge pull request #2 from gndk/dbal4 #3

Merge pull request #2 from gndk/dbal4

Merge pull request #2 from gndk/dbal4 #3

Workflow file for this run

name: "Linting and Unit Tests"
on:
pull_request:
branches:
- 'develop'
push:
branches:
- 'develop'
- 'main'
jobs:
syntax-linting:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
steps:
- uses: 'actions/checkout@v2'
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '${{ matrix.php }}'
- run: 'find src/ -type f -name "*.php" -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )'
unit-testing:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
steps:
- uses: 'actions/checkout@v2'
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '${{ matrix.php }}'
- uses: 'ramsey/composer-install@v2'
with:
dependency-versions: 'highest'
- run: './vendor/bin/phpunit --bootstrap="tests/bootstrap.php" --test-suffix="Test.php" tests'