-
-
Notifications
You must be signed in to change notification settings - Fork 4
35 lines (27 loc) · 875 Bytes
/
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
name: WooCommerce Linter
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
tools: composer:v2
- name: install linter
run: |
cd lint && composer install && cd ..
- name: lint version
run: |
php ./lint/vendor/bin/phpcs --version
- name: lint
run: |
php ./lint/vendor/bin/phpcs --standard=./lint/pbs-rules-set.xml --warning-severity=0 --report-source --report-full=phpcs-report.txt --extensions=php,html depay-woocommerce-payments.php includes
- uses: actions/upload-artifact@v3
if: failure()
with:
name: phpcs-report
path: ${{ github.workspace }}/phpcs-report.txt