forked from phpmyadmin/sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (29 loc) · 826 Bytes
/
lint-php.yml
File metadata and controls
32 lines (29 loc) · 826 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
31
name: Lint php files
on:
push:
pull_request:
types: [opened, synchronize, reopened]
branches:
- master
- QA
jobs:
lint-php:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use php 7.1
uses: shivammathur/setup-php@v2
with:
php-version: 7.1
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Cache module
uses: actions/cache@v2
with:
path: ~/.composer/cache/
key: composer-cache
- name: Install dependencies
run: composer install
- name: Lint files
run: ./vendor/bin/phpcs