Skip to content

fix(deps): update illuminate packages to v11 (major) #35

fix(deps): update illuminate packages to v11 (major)

fix(deps): update illuminate packages to v11 (major) #35

Workflow file for this run

name: tests
on:
push:
branches:
- main
- '*.x'
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3]
laravel: [9, 10]
exclude:
- php: 8.1
laravel: 9
- php: 8.2
laravel: 9
- php: 8.3
laravel: 9
name: PHP ${{ matrix.php }} - Laravel ${{ 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, bcmath
ini-values: error_reporting=E_ALL
tools: composer:v2
coverage: none
- name: Install dependencies
run: |
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
composer update --prefer-dist --no-interaction --no-progress
- name: Execute tests
run: vendor/bin/pest --colors=always