PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Packages of Pierre S   Easy Email Validator   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy Email Validator
Validate email addresses using domain lists
Author: By
Last change:
Date: 4 months ago
Size: 848 bytes
 

Contents

Class file image Download
name: CI on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: '8.4' extensions: mbstring, intl coverage: none - name: Install Composer dependencies run: composer install --prefer-dist --no-interaction --no-progress - name: Run PHPStan run: vendor/bin/phpstan analyse --no-progress - name: Run PHP CS Fixer Src (dry-run) run: vendor/bin/php-cs-fixer fix src --dry-run --diff - name: Run PHP CS Fixer Tests (dry-run) run: vendor/bin/php-cs-fixer fix tests --dry-run --diff - name: Run PHPUnit run: vendor/bin/phpunit tests --testdox