-
Notifications
You must be signed in to change notification settings - Fork 12
44 lines (37 loc) · 1.16 KB
/
lint.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
name: Linting
on:
pull_request:
branches:
- master
- feature/*
- release/*
workflow_dispatch:
inputs:
ref:
description: 'The branch to run the workflow on'
required: false
default: 'master'
jobs:
phpcs:
name: PHP Code Sniffer
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP version
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
coverage: none
tools: composer, cs2pr
- name: Install dependencies
run: composer install
- id: changes
run: |
URL="https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files"
FILES=$(curl -s -X GET -G $URL | jq -r '.[] | .filename' | xargs)
echo "{files}={$FILES}" >> $GITHUB_OUTPUT
- name: Test changed files
run: ./vendor/bin/phpcs ${{ steps.changes.outputs.files }} --report-full --report-checkstyle=./.github/phpcs-report.xml --runtime-set testVersion 8.0
- name: Upload PHPCS report
if: ${{ always() }}
run: cs2pr ./.github/phpcs-report.xml