-
Notifications
You must be signed in to change notification settings - Fork 39
80 lines (66 loc) · 2.22 KB
/
phpcs-tests.yml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: PHPCS Tests
on:
push:
branches:
- develop
pull_request:
workflow_dispatch:
env:
WP_VERSION: 6.1.1
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
run-phpcs:
name: Run PHPCS
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
strategy:
matrix:
php-versions: [7.4]
# php-versions: [5.6, 7.4, 8.0, 8.1, 8.2]
coverage: [true]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
id: ci-setup
uses: ./.github/actions/ci-setup
with:
extensions: 'curl'
extensions-cache-key: run-phpcs
php-version: ${{ matrix.php-versions }}
token: ${{ secrets.GITHUB_TOKEN }}
tools: 'composer, cs2pr, phpcs'
- name: Run PHPCS
continue-on-error: false
id: phpcs
run: composer phpcs
env:
CHANGED_FILES: ${{ steps.ci-setup.outputs.files }}
- name: Show PHPCS results in PR
if: ${{ always() && steps.phpcs.outcome == 'failure' }}
run: cs2pr ./phpcs-report.xml
# old-phpcs:
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0 # important!
# - name: Remove composer.lock
# run: rm composer.lock
# - name: Validate composer.json and composer.lock
# run: composer validate --strict
# - name: Cache Composer packages
# id: composer-cache
# uses: actions/cache@v3
# with:
# path: vendor
# key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
# restore-keys: |
# ${{ runner.os }}-php-
# - name: Install dependencies
# run: composer install --prefer-dist --no-progress
# - name: Run PHPCS tests
# run: composer run-script lint