mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-17 17:47:13 +00:00
* Removed support for Laravel 8 and therefore for PHP < 8.0 * Update php-cs-fixer to v3 * composer fix-style
57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
name: Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
php-tests:
|
|
runs-on: ${{ matrix.os }}
|
|
timeout-minutes: 15
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-20.04, windows-2019]
|
|
php: [8.3, 8.2, 8.1, 8.0]
|
|
laravel: [9.*, 10.*]
|
|
dependency-version: [prefer-lowest, prefer-stable]
|
|
exclude:
|
|
- php: 8.0
|
|
laravel: 10.*
|
|
- php: 8.0
|
|
dependency-version: prefer-lowest
|
|
steps:
|
|
- name: Set git to use LF
|
|
if: ${{ matrix.os == 'windows-2019' }}
|
|
run: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.eol lf
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- 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
|
|
|
|
- name: Execute Unit Tests
|
|
run: composer test-ci
|