File tree Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Expand file tree Collapse file tree 1 file changed +0
-33
lines changed Original file line number Diff line number Diff line change 1111 - cron : " 0 17 * * *"
1212
1313jobs :
14- coding-standards :
15- name : " Coding Standards"
16-
17- runs-on : " ubuntu-22.04"
18-
19- strategy :
20- matrix :
21- php-version :
22- - " 7.4"
23-
24- steps :
25- - name : " Checkout"
26- uses : " actions/checkout@v5"
27-
28- - name : " Install PHP"
29- uses : " shivammathur/setup-php@v2"
30- with :
31- coverage : " none"
32- php-version : " ${{ matrix.php-version }}"
33-
34- - name : " Cache dependencies installed with composer"
35- uses : " actions/cache@v4"
36- with :
37- path : " ~/.composer/cache"
38- key : " php-${{ matrix.php-version }}-composer-${{ hashFiles('composer.json') }}"
39- restore-keys : " php-${{ matrix.php-version }}-composer-"
40-
41- - name : " Install dependencies with composer"
42- run : " composer update --no-interaction --no-progress --no-suggest"
43-
44- - name : " Run squizlabs/php_codesniffer"
45- run : " vendor/bin/phpcs"
46-
4714 validate-against-schema :
4815 name : " Validate against schema"
4916
You can’t perform that action at this time.
0 commit comments