PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Scott Arciszewski   PHP String Hidden Characters   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP String Hidden Characters
Hide strings to avoid appearing in stack traces
Author: By
Last change:
Date: 5 months ago
Size: 1,062 bytes
 

Contents

Class file image Download
name: Tests on: [push, pull_request] jobs: build: name: PHPUnit runs-on: ubuntu-22.04 strategy: max-parallel: 10 matrix: php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] steps: - name: Set up PHP uses: shivammathur/[email protected] with: php-version: ${{ matrix.php }} coverage: none - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies env: PHP_VERSION: ${{ matrix.php }} run: composer update - name: Run tests run: ./vendor/bin/phpunit lowest: name: Lowest deps runs-on: ubuntu-latest steps: - name: Set up PHP uses: shivammathur/[email protected] with: php-version: 7.4 coverage: none - name: Checkout code uses: actions/checkout@v2 - name: Download dependencies run: composer update --no-interaction --prefer-dist --prefer-stable --prefer-lowest - name: Run tests run: ./vendor/bin/phpunit