PHP Classes

File: .github/workflows/testing.yml

Recommend this page to a friend!
  Classes of DeGraciaMathieu   Laravel Rapid Bind   .github/workflows/testing.yml   Download  
File: .github/workflows/testing.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Rapid Bind
Create singletons to implement interfaces
Author: By
Last change:
Date: 15 days ago
Size: 530 bytes
 

Contents

Class file image Download
name: testing on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [8.1, 8.2, 8.3] steps: - uses: actions/checkout@v4 - name: Set PHP version uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Install composer dependencies run: composer update --quiet --no-ansi --no-interaction --no-scripts --no-suggest --no-progress --prefer-dist - name: PHPUnit run: vendor/bin/phpunit