Integration Tests #2420
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Integration Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
php-laravel-integration-tests: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 15 | |
env: | |
COMPOSER_NO_INTERACTION: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [8.4, 8.3, 8.2] | |
laravel: [^11.15] | |
name: P${{ matrix.php }} - Laravel${{ matrix.laravel }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
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 }} --stability=dev --no-progress sample | |
cd sample | |
composer config minimum-stability dev | |
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:*" --with-all-dependencies | |
- name: Execute generate run | |
run: | | |
cd sample | |
php artisan ide-helper:generate | |
- name: Execute meta run | |
run: | | |
cd sample | |
php artisan ide-helper:meta -v | |
- name: Check file existence | |
run: | | |
ls sample/_ide_helper.php | |
ls sample/.phpstorm.meta.php | |
- name: Check logs | |
run: | | |
if [ `ls -1q "sample/storage/logs/" | wc -l` -gt 0 ]; then | |
for logfile in sample/storage/logs/*; do | |
echo "-- $logfile --" | |
cat $logfile | |
done | |
exit 1 | |
fi |