PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Classes of Edward Paul   Laravel Notification Channel Termii   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Notification Channel Termii
Send messages to other people with the Termii API
Author: By
Last change:
Date: 7 months ago
Size: 677 bytes
 

Contents

Class file image Download
name: PHPUnit tests on: - push - pull_request jobs: tests: runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [7.2, 7.3, 7.4, 8.0] name: Tests on PHP ${{ matrix.php }} - ${{ matrix.stability }} steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} tools: composer:v2 coverage: none - name: Install dependencies run: composer update --prefer-source --no-interaction --no-progress - name: Execute tests run: vendor/bin/phpunit --verbose