PHP Classes

File: .github/workflows/phpstan.yml

Recommend this page to a friend!
  Classes of Omar Andrés Barbosa Ortiz   Easy Blog   .github/workflows/phpstan.yml   Download  
File: .github/workflows/phpstan.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy Blog
Provide a blog as a Laravel service
Author: By
Last change:
Date: 1 month ago
Size: 556 bytes
 

Contents

Class file image Download
name: PHPStan on: push: paths: - '**.php' - 'phpstan.neon.dist' - '.github/workflows/phpstan.yml' jobs: phpstan: name: phpstan runs-on: ubuntu-latest timeout-minutes: 5 steps: - uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.4' coverage: none - name: Install composer dependencies uses: ramsey/composer-install@v3 - name: Run PHPStan run: ./vendor/bin/phpstan --error-format=github