PHP Classes

File: .github/workflows/analyze-code.yml

Recommend this page to a friend!
  Packages of Axel Pardemann   PHP Objects Extensions   .github/workflows/analyze-code.yml   Download  
File: .github/workflows/analyze-code.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: 730 bytes
 

Contents

Class file image Download
name: analyze-code on: push: paths: - '**.php' - 'phpstan.neon.dist' pull_request: paths: - '**.php' - 'phpstan.neon.dist' jobs: analyze-code: runs-on: ubuntu-latest strategy: matrix: php: [8.0] steps: - 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: Analyze code run: composer analyze:github