PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Classes of aflaton   PHP Flash Messages   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Flash Messages
Store and display messages to show for site users
Author: By
Last change: Fix tests.yml
Fix tests.yml
Fix tests.yml to resolve matrix PHP version issue
Date: 8 days ago
Size: 563 bytes
 

Contents

Class file image Download
name: Run Tests on: push: branches: - main pull_request: branches: - main jobs: php-tests: runs-on: ubuntu-latest strategy: matrix: php: ['7.4'] steps: - name: Checkout code uses: actions/checkout@v3 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} tools: composer - name: Install dependencies run: composer install --no-progress --prefer-dist - name: Run Tests run: composer test