PHP Classes

File: .github/workflows/php-cs-fixer.yml

Recommend this page to a friend!
  Packages of Caleb   PHP Common Class Library   .github/workflows/php-cs-fixer.yml   Download  
File: .github/workflows/php-cs-fixer.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Common Class Library
Set of classes that provides common functionality
Author: By
Last change:
Date: 9 months ago
Size: 697 bytes
 

Contents

Class file image Download
name: PHP-CS-Fixer on: [push, pull_request] jobs: build: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest] php-versions: ['8.3'] name: PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v4 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: pcre tools: php-cs-fixer - name: PHP-CS-Fixer Check run: | php-cs-fixer fix -v --dry-run ./src --rules=@PSR12,-blank_line_after_opening_tag php-cs-fixer fix -v --dry-run ./.tests --rules=@PSR12,-blank_line_after_opening_tag