PHP Classes

File: .github/workflows/fix-style.yml

Recommend this page to a friend!
  Packages of Axel Pardemann   PHP Objects Extensions   .github/workflows/fix-style.yml   Download  
File: .github/workflows/fix-style.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Objects Extensions
Add functions to objects using another class
Author: By
Last change:
Date: 9 months ago
Size: 812 bytes
 

Contents

Class file image Download
name: fix-style on: [push] jobs: fix-style: runs-on: ubuntu-latest strategy: matrix: php: [8.0] steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick - name: Install dependencies run: composer update --prefer-dist --no-interaction --no-suggest - name: Check style run: composer style:check - name: Fix style run: composer style:fix - name: Commit changes uses: stefanzweifel/git-auto-commit-action@v4 with: commit_message: Fix styling