mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
128 lines
4.1 KiB
YAML
128 lines
4.1 KiB
YAML
name: Integration Tests
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
php-lumen-integration-tests:
|
|
runs-on: ubuntu-20.04
|
|
timeout-minutes: 15
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
strategy:
|
|
matrix:
|
|
php: [8.1, 8.0, 7.4, 7.3]
|
|
lumen: [8.*]
|
|
name: P${{ matrix.php }} - Lumen${{ matrix.lumen }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: src
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
composer create-project --prefer-dist laravel/lumen:${{ matrix.lumen }} --no-progress sample
|
|
cd sample
|
|
composer require "league/flysystem:^1" --no-update --no-progress
|
|
composer update --prefer-stable --prefer-dist --no-progress
|
|
|
|
- name: Add package from source
|
|
run: |
|
|
cd sample
|
|
sed -e 's|"type": "project",|&\n"repositories": [ { "type": "path", "url": "../src" } ],|' -i composer.json
|
|
composer require --dev "barryvdh/laravel-ide-helper:*"
|
|
|
|
- name: Insert service provider
|
|
run: sed -e 's|// \$app->register(App\\\Providers\\\EventServiceProvider::class);|&\n$app->register(\\Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider::class);|' -i sample/bootstrap/app.php
|
|
|
|
- name: Execute generate run
|
|
run: |
|
|
cd sample
|
|
php artisan ide-helper:generate
|
|
|
|
- name: Execute meta run
|
|
run: |
|
|
cd sample
|
|
php artisan ide-helper:meta
|
|
|
|
- name: Check file existence
|
|
run: |
|
|
ls sample/_ide_helper.php
|
|
ls sample/.phpstorm.meta.php
|
|
|
|
- name: Check file count in logs
|
|
run: |
|
|
if [ `ls -1q "sample/storage/logs/" | wc -l` -gt 0 ];then exit 1;fi
|
|
|
|
php-laravel-integration-tests:
|
|
runs-on: ubuntu-20.04
|
|
timeout-minutes: 15
|
|
env:
|
|
COMPOSER_NO_INTERACTION: 1
|
|
strategy:
|
|
matrix:
|
|
php: [8.1, 8.0, 7.4, 7.3]
|
|
laravel: [9.*, 8.*]
|
|
exclude:
|
|
- php: 7.4
|
|
laravel: 9.*
|
|
- php: 7.3
|
|
laravel: 9.*
|
|
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }}
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: src
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php }}
|
|
coverage: none
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
composer create-project --prefer-dist laravel/laravel:${{ matrix.laravel }} --no-progress sample
|
|
cd sample
|
|
composer update --prefer-stable --prefer-dist --no-progress
|
|
|
|
- name: Add package from source
|
|
run: |
|
|
cd sample
|
|
sed -e 's|"type": "project",|&\n"repositories": [ { "type": "path", "url": "../src" } ],|' -i composer.json
|
|
composer require --dev "barryvdh/laravel-ide-helper:*"
|
|
|
|
- name: Execute generate run
|
|
run: |
|
|
cd sample
|
|
php artisan ide-helper:generate
|
|
|
|
- name: Execute meta run
|
|
run: |
|
|
cd sample
|
|
php artisan ide-helper:meta
|
|
|
|
- name: Check file existence
|
|
run: |
|
|
ls sample/_ide_helper.php
|
|
ls sample/.phpstorm.meta.php
|
|
|
|
- name: Check file count in logs
|
|
run: |
|
|
if [ `ls -1q "sample/storage/logs/" | wc -l` -gt 0 ];then exit 1;fi
|