PHP Classes

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

Recommend this page to a friend!
  Classes of Andre Polykanine A.K.A. Menelion Elensúlë   Oire Base64   .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: Oire Base64
URL safe encoding and decoding of data with Base64
Author: By
Last change:
Date: 15 days ago
Size: 717 bytes
 

Contents

Class file image Download
name: Check & fix styling on: [push] jobs: php-cs-fixer: runs-on: ubuntu-latest strategy: fail-fast: true steps: - name: Checkout code uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: 7.4 extensions: mbstring, pdo, sqlite, pdo_sqlite coverage: none - name: Install dependencies run: composer install - name: run PHP CS Fixer run: vendor/bin/php-cs-fixer fix - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Fix code styling