[#532] Apply Rector follow-up #886
Workflow file for this run
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: Tests | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| operating-system: [ ubuntu-latest ] | |
| php-versions: [ '8.0', '8.1', '8.2' ] | |
| redis-version: [ 6 ] | |
| runs-on: ${{ matrix.operating-system }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Start Memcached | |
| uses: niden/actions-memcached@v7 | |
| - name: Start Redis | |
| uses: supercharge/redis-github-action@1.4.0 | |
| with: | |
| redis-version: ${{ matrix.redis-version }} | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| extensions: redis, memcached | |
| ini-values: phar.readonly=0, error_reporting=E_ALL | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate --strict | |
| - name: Cache Composer packages | |
| id: composer-cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: vendor | |
| key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
| restore-keys: | | |
| ${{ runner.os }}-php- | |
| - name: Install dependencies | |
| run: composer update --prefer-dist --no-progress --no-interaction | |
| - name: Run PHP-CS-Fixer | |
| run: composer cs:check | |
| - name: Run PHPStan | |
| run: composer phpstan | |
| - name: Run tests | |
| run: composer test -- --fail-on-warning --fail-on-risky | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |