psalm-plugin-laravel/.github/workflows/lint.yml
2020-04-12 12:14:35 -07:00

19 lines
456 B
YAML

name: PHPCS check
on: pull_request
jobs:
phpcs:
name: PHPCS
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: export COMPOSER_ROOT_VERSION=dev-master && composer install --prefer-dist --no-progress --no-suggest
- name: PHPCS check
uses: chekalsky/phpcs-action@v1
with:
installed_paths: '${{ github.workspace }}/vendor/slevomat/coding-standard'