PHP Classes

File: vendor/smalot/pdfparser/.github/workflows/coding-standards.yml

Recommend this page to a friend!
  Classes of Cuthbert Martin Lwinga   PHP Neural Net Library   vendor/smalot/pdfparser/.github/workflows/coding-standards.yml   Download  
File: vendor/smalot/pdfparser/.github/workflows/coding-standards.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Neural Net Library
Build, train, evaluate, and use neural networks
Author: By
Last change:
Date: 6 months ago
Size: 837 bytes
 

Contents

Class file image Download
name: "CS" on: pull_request: push: branches: - master jobs: coding-standards: name: "CS Fixer & PHPStan" runs-on: ubuntu-20.04 steps: - name: Checkout uses: actions/checkout@v3 - env: COMPOSER_TOKEN: "${{ secrets.GITHUB_TOKEN }}" name: "Install PHP" uses: shivammathur/setup-php@v2 with: coverage: none php-version: "7.4" tools: "composer:v2" - name: Install dependencies with Composer uses: ramsey/composer-install@v2 - name: Install dev tools run: make install-dev-tools - name: Run PHP CS Fixer run: 'make run-php-cs-fixer ARGS="--verbose --dry-run"' - name: Run PHPStan run: 'make run-phpstan ARGS="--no-progress"'