Skip to content

Upgrade to Laravel 12 (#97) #190

Upgrade to Laravel 12 (#97)

Upgrade to Laravel 12 (#97) #190

Workflow file for this run

name: PHP Composer
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v4
with:
path: vendor
key: "${{ runner.os }}-php-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}"
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-
- name: Remove pint if not PHP 8.1
run: |
if [ '${{ matrix.php }}' != '8.1' ]; then
composer remove laravel/pint --dev
fi
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: composer run test