mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
Laravel 13.x Compatibility (#1763)
* Bump dependencies for Laravel 13 * Update GitHub Actions for Laravel 13 * Update workflow to remove cron schedule Removed cron schedule and adjusted pull request branches. * Fix syntax, modify Laravel version in run-tests.yml Updated Laravel version from '13.0' to '13.x' in CI configuration. * Update test-ci command in composer.json * Fix test-ci command in composer.json --------- Co-authored-by: Barry vd. Heuvel <[email protected]>
This commit is contained in:
co-authored by
Barry vd. Heuvel
parent
37dfcf9e14
commit
e9b62b6ee0
@@ -7,13 +7,13 @@ on:
|
||||
pull_request:
|
||||
branches:
|
||||
- "*"
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
|
||||
jobs:
|
||||
php-tests:
|
||||
runs-on: ${{ matrix.os }}
|
||||
|
||||
timeout-minutes: 15
|
||||
|
||||
env:
|
||||
COMPOSER_NO_INTERACTION: 1
|
||||
|
||||
@@ -22,36 +22,40 @@ jobs:
|
||||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
php: [8.5, 8.4, 8.3, 8.2]
|
||||
laravel: [~11.15, 12.x]
|
||||
laravel: [12.x, 13.x, ~11.15]
|
||||
stability: [prefer-lowest, prefer-stable]
|
||||
include:
|
||||
- os: windows-latest
|
||||
php: 8.3
|
||||
laravel: 12.x
|
||||
stability: prefer-stable
|
||||
exclude:
|
||||
- laravel: 13.x
|
||||
php: 8.2
|
||||
|
||||
steps:
|
||||
- name: Set git to use LF
|
||||
if: ${{ matrix.os == 'windows-latest' }}
|
||||
run: |
|
||||
git config --global core.autocrlf false
|
||||
git config --global core.eol lf
|
||||
- name: Set git to use LF
|
||||
if: "${{ matrix.os == 'windows-latest' }}"
|
||||
run: |
|
||||
git config --global core.autocrlf false
|
||||
git config --global core.eol lf
|
||||
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v6
|
||||
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
coverage: none
|
||||
extensions: pdo_sqlite, fileinfo
|
||||
- name: Setup PHP
|
||||
uses: shivammathur/setup-php@v2
|
||||
with:
|
||||
php-version: ${{ matrix.php }}
|
||||
coverage: none
|
||||
extensions: pdo_sqlite, fileinfo
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
composer remove vimeo/psalm --no-update --dev
|
||||
composer remove friendsofphp/php-cs-fixer --no-update --dev
|
||||
composer require "laravel/framework:${{ matrix.laravel }}" --no-update --no-progress
|
||||
composer update --prefer-dist --no-progress --${{ matrix.stability }}
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
composer remove vimeo/psalm --no-update --dev
|
||||
composer remove friendsofphp/php-cs-fixer --no-update --dev
|
||||
composer require "laravel/framework:${{ matrix.laravel }}" --no-update --no-progress
|
||||
composer update --prefer-dist --no-progress --${{ matrix.stability }}
|
||||
|
||||
- name: Execute Unit Tests
|
||||
run: composer test-ci
|
||||
- name: Execute Unit Tests
|
||||
run: composer test-ci
|
||||
|
||||
Reference in New Issue
Block a user