PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Packages of DeGraciaMathieu   PHP Dep   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Dep
Analyse the dependencies of classes in a project
Author: By
Last change:
Date: 23 days ago
Size: 611 bytes
 

Contents

Class file image Download
name: Tests on: push: branches: [main] pull_request: branches: [main] jobs: phpunit: name: PHPUnit (PHP ${{ matrix.php }}) runs-on: ubuntu-latest strategy: matrix: php: ["8.2", "8.3", "8.4"] steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run tests run: ./vendor/bin/phpunit --testdox