Merge pull request #26 from tattali/fix-tests #138
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
# Symfony minmal version: | |
# - 3: 7.0.8 | |
# - 4: 7.1.3 | |
# - 5: 7.2.5 | |
# - 6: 8.0.2 | |
name: Symfony Bundle CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
phpunit: | |
name: Test on PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony-require }} | |
runs-on: ubuntu-latest | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony-require }} | |
strategy: | |
fail-fast: false | |
matrix: | |
php: | |
- 8.2 | |
dependencies: | |
- highest | |
stability: | |
- stable | |
symfony-require: | |
# Test latest stable version | |
- 7.* | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install PHP with PCOV | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: pcov | |
ini-values: zend.assertions=1 | |
- name: Globally install symfony/flex | |
run: | | |
composer global config --no-plugins allow-plugins.symfony/flex true | |
composer global require --no-progress --no-scripts --no-plugins symfony/flex | |
- name: Configure minimum stability of dependencies | |
run: composer config minimum-stability ${{ matrix.stability }} | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: ${{ matrix.dependencies }} | |
composer-options: --prefer-dist | |
- name: Lint via PHP Coding Standards Fixer and PHP_CodeSniffer | |
run: | | |
vendor/bin/php-cs-fixer fix --dry-run --diff --ansi -vvv | |
vendor/bin/phpcs --report=code | |
- name: Static Analysis via PHPStan | |
run: vendor/bin/phpstan analyse | |
- name: Unit and Feature tests via PHPUnit | |
run: php vendor/bin/phpunit | |
- name: Upload coverage file | |
uses: actions/upload-artifact@v3 | |
with: | |
name: phpunit-${{ matrix.php }}-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}.coverage | |
path: build/coverage.xml | |
- name: Setup tmate session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
with: | |
limit-access-to-actor: true | |
upload_coverage: | |
name: Upload coverage to Codecov | |
runs-on: ubuntu-latest | |
needs: | |
- phpunit | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Download coverage files | |
uses: actions/download-artifact@v3 | |
with: | |
path: reports | |
- name: Upload to Codecov | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
uses: codecov/codecov-action@v2 | |
with: | |
directory: reports |