PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Classes of Kacper Rowinski   PHP iNotify Extension Class   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP iNotify Extension Class
Get notifications of when directory files change
Author: By
Last change:
Date: 14 days ago
Size: 1,044 bytes
 

Contents

Class file image Download
name: PHP Tests on: [ push, pull_request ] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [ '7.4', '8.0' ] steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug extensions: inotify - name: Validate composer.json and composer.lock run: composer validate - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.php }}- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest - name: Run tests run: vendor/bin/phpunit --coverage-text