Skip to content

Chore/upgrade to newer laravel versions #136

Chore/upgrade to newer laravel versions

Chore/upgrade to newer laravel versions #136

---
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