-
-
Notifications
You must be signed in to change notification settings - Fork 27
30 lines (24 loc) · 771 Bytes
/
php-linter.yml
File metadata and controls
30 lines (24 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: PHP Linter
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
php-linter:
runs-on: ubuntu-latest
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v2
with:
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
ref: ${{ github.event.client_payload.pull_request.head.ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
coverage: none # disable xdebug, pcov
- run: composer require --dev php-parallel-lint/php-parallel-lint
- name: Lint PHP
run: vendor/bin/parallel-lint cs2pr tests/