mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
* 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]>
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
|
|
jobs:
|
|
php-tests:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
timeout-minutes: 15
|
|
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest]
|
|
php: [8.5, 8.4, 8.3, 8.2]
|
|
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: 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: 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
|