PHP Classes

File: .github/workflows/phpunit.yml

Recommend this page to a friend!
  Classes of Carlos Artur Curvelo da Matos   Alecto - Circuit Breaker Pattern All-in-One Implementation   .github/workflows/phpunit.yml   Download  
File: .github/workflows/phpunit.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Alecto - Circuit Breaker Pattern All-in-One Implementation
Execute actions using the Circuit Breaker pattern
Author: By
Last change:
Date: 16 days ago
Size: 579 bytes
 

Contents

Class file image Download
name: PHPUnit Tests on: push: branches: [main] pull_request: branches: [main] jobs: test: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: '8.2' # PHP version updated to 8.2 extensions: mbstring, intl coverage: xdebug # If you need code coverage - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Run PHPUnit run: vendor/bin/phpunit