PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Scott Arciszewski   Typed Arrays   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Typed Arrays
Implement arrays of values of only one type
Author: By
Last change:
Date: 9 days ago
Size: 749 bytes
 

Contents

Class file image Download
name: CI on: [push] jobs: phpunit: name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: ['ubuntu-latest'] php-versions: ['8.3', '8.4'] steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: mbstring, intl, sodium ini-values: error_reporting=-1, display_errors=On coverage: none - name: Install Composer dependencies uses: "ramsey/composer-install@v2" - name: PHPUnit tests run: vendor/bin/phpunit