Move classes from Payum\Core\Bridge\Symfony into PayumBundle #93
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: Unit Tests | |
on: [push, pull_request] | |
env: | |
SYMFONY_DEPRECATIONS_HELPER: weak | |
jobs: | |
unit-test: | |
name: Unit ( PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }} ) | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- php: 7.4 | |
symfony: 4.4.* | |
- php: 7.4 | |
symfony: 5.4.* | |
- php: 8.0 | |
symfony: 4.4.* | |
- php: 8.0 | |
symfony: 5.4.* | |
- php: 8.0 | |
symfony: 6.0.* | |
- php: 8.1 | |
symfony: 4.4.* | |
- php: 8.1 | |
symfony: 5.4.* | |
- php: 8.1 | |
symfony: 6.0.* | |
- php: 8.1 | |
symfony: 6.4.* | |
- php: 8.2 | |
symfony: 6.4.* | |
- php: 8.2 | |
symfony: 7.0.* | |
- php: 8.3 | |
symfony: 7.0.* | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: intl, opcache, mysql, pdo_mysql, :xdebug | |
- name: Get composer cache directory | |
id: composercache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composercache.outputs.dir }} | |
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json composer.lock') }} | |
restore-keys: ${{ runner.os }}-php-${{ matrix.php }}-composer- | |
- name: Install Symfony ${{ matrix.symfony }} | |
run: composer config extra.symfony.require ${{ matrix.symfony }} | |
- name: Install Symfony Flex | |
run: | | |
composer config --no-plugins allow-plugins.symfony/flex true | |
composer require symfony/flex:"^1|^2" --no-update | |
- name: Install dependencies | |
run: composer update | |
- name: Run unit tests | |
run: bin/phpunit |