PHP Classes

File: .github/workflows/build.yml

Recommend this page to a friend!
  Classes of Moamen Eltouny   Laravel Executor   .github/workflows/build.yml   Download  
File: .github/workflows/build.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Executor
Execute commands, actions, jobs, and tasks
Author: By
Last change:
Date: 1 month ago
Size: 1,009 bytes
 

Contents

Class file image Download
name: build on: [push, pull_request] jobs: run: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest] php-versions: ["8.1", "8.2", "8.3"] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: mbstring, pdo, pdo_sqlite, sqlite3, intl, zip coverage: none - name: Check PHP Version run: php -v - name: Check Composer Version run: composer -V - name: Check PHP Extensions run: php -m - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Run test suite run: vendor/bin/phpunit