remove dd #90
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: 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 | |