PHP Classes

File: .github/workflows/php.yml

Recommend this page to a friend!
  Classes of Ladislav Vondracek   Lawondyss PHP Config Class   .github/workflows/php.yml   Download  
File: .github/workflows/php.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Lawondyss PHP Config Class
Base class for creating configuration objects
Author: By
Last change:
Date: 7 months ago
Size: 502 bytes
 

Contents

Class file image Download
name: PHP Composer on: push: branches: [ "main" ] pull_request: branches: [ "main" ] permissions: contents: read jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Validate composer.json and composer.lock run: composer validate --strict - name: Install dependencies run: composer install --prefer-dist --no-progress - name: Run tests run: composer run tests - name: Run CS run: composer run phpcs