Merge pull request #1619 from NikoGrano/patch-1 #849
This file contains hidden or 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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| phpunit: | |
| name: "PHPUnit" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: | |
| - "7.4" | |
| - "8.0" | |
| - "8.1" | |
| - "8.2" | |
| - "8.3" | |
| - "8.4" | |
| dependencies: | |
| - "lowest" | |
| - "highest" | |
| include: | |
| - php-version: '8.5' | |
| dependencies: 'highest' | |
| composer-stability: 'dev' | |
| env: | |
| JMS_TESTS_SHOW_DEPRECATIONS: 1 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| - name: Composer config | |
| if: ${{ matrix.composer-stability }} | |
| run: composer config minimum-stability ${{ matrix.composer-stability }} | |
| - name: Install symfony/clock for PHP >= 8.1 | |
| if: ${{ matrix.php-version >= '8.1' }} | |
| run: composer require --dev symfony/clock:"^6.4 || ^7.0 || ^8.0" --no-update | |
| - name: Install dependencies with Composer | |
| uses: ramsey/composer-install@v3 | |
| with: | |
| dependency-versions: "${{ matrix.dependencies }}" | |
| composer-options: "${{ matrix.composer-options }}" | |
| - name: Run tests | |
| run: | | |
| export $ENV | |
| echo $ENV | |
| vendor/bin/phpunit |