Ticket #50401: 50401.3.diff
File 50401.3.diff, 1.7 KB (added by , 4 years ago) |
---|
-
.github/workflows/coding-standards.yml
60 60 - name: Install Composer dependencies 61 61 run: | 62 62 composer install --prefer-dist --no-suggest --no-progress --no-ansi --no-interaction 63 echo " vendor/bin" >> $GITHUB_PATH63 echo "${PWD}/vendor/bin" >> $GITHUB_PATH 64 64 65 65 - name: Log PHPCS debug information 66 66 run: phpcs -i 67 67 68 68 - name: Run PHPCS on all Core files 69 run: vendor/bin/phpcs -q -n --report=checkstyle | cs2pr69 run: phpcs -q -n --report=checkstyle | cs2pr 70 70 71 71 - name: Check test suite files for warnings 72 run: vendor/bin/phpcs tests -q --report=checkstyle | cs2pr72 run: phpcs tests -q --report=checkstyle | cs2pr 73 73 74 74 # Runs the JavaScript coding standards checks. 75 75 # -
.github/workflows/php-compatibility.yml
61 61 - name: Install Composer dependencies 62 62 run: | 63 63 composer install --prefer-dist --no-suggest --no-progress --no-ansi --no-interaction 64 echo " vendor/bin" >> $GITHUB_PATH64 echo "${PWD}/vendor/bin" >> $GITHUB_PATH 65 65 66 66 - name: Run PHP compatibility tests 67 run: vendor/bin/phpcs --standard=phpcompat.xml.dist -q --report=checkstyle | cs2pr67 run: phpcs --standard=phpcompat.xml.dist -q --report=checkstyle | cs2pr