PHP Classes

File: .github/workflows/phpunit.yml

Recommend this page to a friend!
  Classes of DeGraciaMathieu   PHP Wording Detector   .github/workflows/phpunit.yml   Download  
File: .github/workflows/phpunit.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Wording Detector
Generate reports on the usage of words in classes
Author: By
Last change:
Date: 1 year ago
Size: 525 bytes
 

Contents

Class file image Download
name: testing on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [8.1, 8.2] steps: - uses: actions/checkout@v1 - name: Set PHP version uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Install composer dependencies run: composer update --quiet --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist - name: PHPUnit run: vendor/bin/phpunit