PHP Classes

File: .github/workflows/test.yml

Recommend this page to a friend!
  Classes of Rafa Rodriguez   Div PHP Laze   .github/workflows/test.yml   Download  
File: .github/workflows/test.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Div PHP Laze
Lazy load immutable values using closure functions
Author: By
Last change: Run phpunit with process insolation argument
Date: 10 days ago
Size: 571 bytes
 

Contents

Class file image Download
name: Run the Unit Tests on: pull_request: branches: - main types: [opened, edited, reopened, synchronize] workflow_dispatch: jobs: static-and-test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP with Composer uses: php-actions/composer@v6 with: php_version: 8.3 - name: PHPStan static analysis run: | vendor/bin/phpstan --memory-limit=512M analyse - name: Run PHPUnit tests run: | vendor/bin/phpunit --process-isolation