PHP Classes

File: .github/workflows/workflow.yml

Recommend this page to a friend!
  Classes of Nahid Bin Azhar   QArray PHP Query Array   .github/workflows/workflow.yml   Download  
File: .github/workflows/workflow.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: QArray PHP Query Array
Query hierarchic data stored as arrays
Author: By
Last change:
Date: 2 years ago
Size: 1,017 bytes
 

Contents

Class file image Download
name: Test on: push: branches: [ master ] pull_request: branches: [ master ] jobs: tests: strategy: matrix: php-versions: [ '5.6', '7.0', '7.1', '7.2', '7.3', '7.4' ] fail-fast: false runs-on: ubuntu-latest steps: - name: Checkout latest revision uses: actions/checkout@v2 - name: Install PHP with extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - name: Validate composer.json and composer.lock run: composer validate --strict - name: Cache Composer packages id: composer-cachez uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run PHPUnit tests run: ./vendor/bin/phpunit