Unit Tests #786
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: Unit Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: | |
| - 'release/**' | |
| - 'feature/**' | |
| - 'main' | |
| schedule: | |
| - cron: '0 0 * * *' # Runs every day at midnight UTC | |
| jobs: | |
| phpunit-tests: | |
| name: PHP ${{ matrix.php-version }} Latest | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php-version: [ '8.0','8.1','8.2','8.3','8.4','8.5' ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| id: setup-php | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: mbstring, intl, curl | |
| - name: Print PHP version | |
| run: echo ${{ steps.setup-php.outputs.php-version }} | |
| - name: Get composer cache directory | |
| id: composer-cache | |
| run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
| - name: Cache dependencies | |
| uses: actions/cache@v3 | |
| with: | |
| path: ${{ steps.composer-cache.outputs.dir }} | |
| key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: ${{ runner.os }}-composer | |
| - name: Validate composer.json | |
| run: composer validate | |
| - name: Install Composer dependencies | |
| run: composer install --prefer-dist --no-progress | |
| - name: Run phpunit tests | |
| run: composer test | |
| symfony: | |
| name: Symfony ${{ matrix.symfony }} LTS and PHP ${{ matrix.php-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - symfony: '6' | |
| php-version: '8.2' | |
| - symfony: '7' | |
| php-version: '8.3' | |
| - symfony: '7' | |
| php-version: '8.4' | |
| - symfony: '8' | |
| php-version: '8.4' | |
| - symfony: '8' | |
| php-version: '8.5' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer config --no-plugins allow-plugins.symfony/flex true | |
| composer require --no-update --no-interaction --no-progress symfony/flex | |
| composer config extra.symfony.require ${{ matrix.symfony}} | |
| composer update --prefer-dist --no-interaction --prefer-stable --no-progress | |
| - name: Execute tests | |
| run: composer test | |
| laravel: | |
| name: Laravel ${{ matrix.laravel }} LTS and PHP ${{ matrix.php-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - laravel: '9.0' | |
| php-version: '8.1' | |
| - laravel: '10.0' | |
| php-version: '8.2' | |
| - laravel: '11.0' | |
| php-version: '8.3' | |
| - laravel: '11.0' | |
| php-version: '8.4' | |
| - laravel: '12.0' | |
| php-version: '8.4' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install dependencies | |
| run: | | |
| composer config --no-plugins allow-plugins.laravel/installer true | |
| composer require --no-update --no-interaction --no-progress "laravel/framework:^${{ matrix.laravel }}" | |
| composer update --prefer-dist --no-interaction --prefer-stable --no-progress | |
| - name: Execute tests | |
| run: composer test |