Skip to content

remove dd

remove dd #92

Workflow file for this run

name: bundle-CI
on:
[push, pull_request]
jobs:
phpstan:
runs-on: ubuntu-latest
name: PHPStan
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
- name: Checkout
uses: actions/checkout@v4
- name: composer install
run: composer install
- name: PHPStan
run: composer phpstan
env:
REQUIRE_DEV: true
# cs-fixer:
# runs-on: ubuntu-latest
# name: PHP-CS-Fixer
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: 8.2
# - name: Checkout
# uses: actions/checkout@v2
# - name: composer install
# run: composer install
## - name: CS Check
## run: composer cs-check
phpunit:
name: PHPUnit (PHP ${{ matrix.php-version }} - Symfony ${{ matrix.symfony-version }})
runs-on: ubuntu-latest
env:
SYMFONY_REQUIRE: ${{ matrix.symfony-version }}
strategy:
matrix:
php-version:
- '8.3'
- '8.4'
symfony-version:
- '6.4.*'
- '7.1.*'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP with pcov
uses: shivammathur/setup-php@v2
with:
coverage: none
php-version: ${{ matrix.php-version }}
- name: Install Symfony Flex
run: |
composer config --global --no-plugins allow-plugins.symfony/flex true
composer global require --no-progress --no-scripts --no-plugins symfony/flex
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
- name: Run PHPStan
run: composer phpstan
- name: Run Unit
run: composer phpunit