PHP Classes

File: .github/workflows/static-analysis.yml

Recommend this page to a friend!
  Packages of Raul   Disposable Email Blocker Core   .github/workflows/static-analysis.yml   Download  
File: .github/workflows/static-analysis.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Disposable Email Blocker Core
Detect disposable or temporary email addresses
Author: By
Last change:
Date: 1 month ago
Size: 1,096 bytes
 

Contents

Class file image Download
name: Static Analysis on: push: branches: [main, master] pull_request: branches: [main, master] jobs: phpstan: runs-on: ubuntu-latest name: PHPStan steps: - name: Checkout code uses: actions/checkout@v7 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.3' extensions: intl, mbstring coverage: none - name: Install dependencies run: composer install --prefer-dist --no-interaction - name: Run PHPStan run: vendor/bin/phpstan analyse --error-format=github code-style: runs-on: ubuntu-latest name: Code Style steps: - name: Checkout code uses: actions/checkout@v7 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.3' extensions: intl, mbstring coverage: none - name: Install dependencies run: composer install --prefer-dist --no-interaction - name: Check code style run: vendor/bin/php-cs-fixer fix --dry-run --diff