Skip to content

Merge branch 'master' of github.com:netherphp/standards #62

Merge branch 'master' of github.com:netherphp/standards

Merge branch 'master' of github.com:netherphp/standards #62

Workflow file for this run

name: PHPCS Test
on: [push]
jobs:
run:
name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ 'ubuntu-latest', 'windows-latest' ]
php-versions: [ '8.0' ]
steps:
- name: Checkout Source.
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
extensions: mbstring, intl
tools: phpcs
- name: Run PHPCS on the Pre-Fixed files
run: |
phpcs TestCode --extensions=.fixed.php