Merge pull request #13 from craftzing/chore/upgrade-to-newer-laravel-… #141
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: Quality assurance | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.2, 8.3] | |
laravel: [^10.0, ^11.0] | |
include: | |
- laravel: ^11.0 | |
testbench: ^9.0 | |
- laravel: ^10.0 | |
testbench: ^8.0 | |
name: P${{ matrix.php }} - L${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick | |
coverage: xdebug | |
- name: Install dependencies | |
run: | | |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update | |
composer update --prefer-dist --no-interaction | |
- name: Run tests | |
run: vendor/bin/phpunit --coverage-clover=coverage.clover | |
- name: Publish code coverage | |
uses: paambaati/codeclimate-action@v5.0.0 | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TEST_REPORTER_ID }} | |
with: | |
coverageCommand: vendor/bin/phpunit --coverage-clover=coverage.clover | |
coverageLocations: ${{github.workspace}}/*.clover:clover | |
debug: true | |
- name: Run PHPStan analysis | |
run: vendor/bin/phpstan analyse --memory-limit=-1 | |
if: ${{ matrix.php == '8.2' }} | |
- name: Run PHP Coding Standards Fixer | |
run: vendor/bin/php-cs-fixer fix src --dry-run |