test: Added basic test for getChildren
and Symfony Serialization
#5
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: Unit tests, static analysis and code style | |
on: | |
push: | |
branches: | |
- master | |
tags: ['**'] | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
static-analysis-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['8.0', '8.1', '8.2', '8.3'] | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- uses: actions/checkout@v3 | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.php-version }}- | |
- name: Install Dependencies | |
run: composer install --no-scripts --no-ansi --no-interaction --no-progress | |
- name: Run PHP Code Sniffer | |
run: vendor/bin/phpcs -p ./src | |
- name: Run unit tests | |
run: | | |
XDEBUG_MODE=coverage vendor/bin/phpunit -v | |
- name: Run PHPStan | |
run: vendor/bin/phpstan analyse --no-progress -c phpstan.neon |