PHP Classes

File: .github/workflows/build.yml

Recommend this page to a friend!
  Classes of DeGraciaMathieu   PHP File Explorer   .github/workflows/build.yml   Download  
File: .github/workflows/build.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP File Explorer
Find files that match a given criteria in a folder
Author: By
Last change:
Date: 1 year ago
Size: 616 bytes
 

Contents

Class file image Download
name: PHP Composer on: push: branches: [ master ] pull_request: jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [8.1, 8.2] steps: - uses: actions/checkout@v2 - name: Validate composer.json run: composer validate - name: Set PHP version uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer update --prefer-dist --no-progress --no-suggest - name: Execute PHPUnit run: vendor/bin/phpunit