Laravel Dusk fix #512
Workflow file for this run
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: phpstan | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] | |
php: [8.3] | |
laravel: [10.*] | |
stability: [prefer-stable] | |
include: | |
- laravel: 10.* | |
name: PHPStan - P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: none | |
- name: Prepare github output | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: | | |
composer install | |
npm install | |
- name: List Installed Dependencies | |
run: composer show -D | |
- name: Setup Laravel | |
run: | | |
cp .env.ci .env | |
php artisan key:generate | |
npm run build | |
- name: Cache Result cache | |
uses: actions/cache@v3 | |
with: | |
path: /home/runner/.cache/phpstan/files | |
key: "result-cache-${{ github.run_id }}" | |
restore-keys: | | |
result-cache- | |
- name: Run PHPStan | |
run: vendor/bin/phpstan analyse -c phpstan-ci.neon --error-format=github |