21 lines
480 B
YAML
21 lines
480 B
YAML
|
name: Lint
|
||
|
on: pull_request
|
||
|
|
||
|
jobs:
|
||
|
php-linters:
|
||
|
runs-on: ubuntu-latest
|
||
|
strategy:
|
||
|
matrix:
|
||
|
php-versions: ['7.2', '7.3', 7.4]
|
||
|
name: php${{ matrix.php-versions }} lint
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@master
|
||
|
- name: Set up php${{ matrix.php-versions }}
|
||
|
uses: shivammathur/setup-php@master
|
||
|
with:
|
||
|
php-version: ${{ matrix.php-versions }}
|
||
|
coverage: none
|
||
|
- name: Lint
|
||
|
run: composer run lint
|