-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #948 from Automattic/improve/workflows
- Loading branch information
Showing
6 changed files
with
98 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,6 @@ | |
/package-lock.json | ||
/composer.json | ||
/tests | ||
/phpunit.xml | ||
/phpunit.xml.dist | ||
/Makefile | ||
/phpcs.xml | ||
/.phpcs.xml.dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
name: CS & Lint | ||
|
||
on: | ||
# Run on all pushes and on all pull requests. | ||
# Prevent the "push" build from running when there are only irrelevant changes. | ||
push: | ||
paths-ignore: | ||
- "**.md" | ||
pull_request: | ||
|
||
# Allow manually triggering the workflow. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
checkcs: | ||
name: "Basic CS and QA checks" | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
XMLLINT_INDENT: " " | ||
|
||
steps: | ||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: "7.4" | ||
coverage: none | ||
tools: cs2pr | ||
|
||
# Show PHP lint violations inline in the file diff. | ||
# @link https://github.com/marketplace/actions/xmllint-problem-matcher | ||
- name: Register PHP lint violations to appear as file diff comments | ||
uses: korelstar/phplint-problem-matcher@v1 | ||
|
||
# Show XML violations inline in the file diff. | ||
# @link https://github.com/marketplace/actions/xmllint-problem-matcher | ||
- name: Register XML violations to appear as file diff comments | ||
uses: korelstar/xmllint-problem-matcher@v1 | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
|
||
# Validate the composer.json file. | ||
# @link https://getcomposer.org/doc/03-cli.md#validate | ||
- name: Validate Composer installation | ||
run: composer validate --no-check-all | ||
|
||
# Install dependencies and handle caching in one go. | ||
# @link https://github.com/marketplace/actions/install-composer-dependencies | ||
- name: Install Composer dependencies | ||
uses: ramsey/composer-install@v2 | ||
|
||
# Lint PHP. | ||
- name: Lint PHP against parse errors | ||
run: composer lint-ci | cs2pr | ||
|
||
# Needed as runs-on: system doesn't have xml-lint by default. | ||
# @link https://github.com/marketplace/actions/xml-lint | ||
- name: Lint phpunit.xml.dist | ||
uses: ChristophWurst/xmllint-action@v1 | ||
with: | ||
xml-file: ./phpunit.xml.dist | ||
xml-schema-file: ./vendor/phpunit/phpunit/phpunit.xsd | ||
|
||
# Needed as runs-on: system doesn't have xml-lint by default. | ||
# @link https://github.com/marketplace/actions/xml-lint | ||
- name: Lint .phpcs.xml.dist | ||
uses: ChristophWurst/xmllint-action@v1 | ||
with: | ||
xml-file: ./.phpcs.xml.dist | ||
xml-schema-file: ./vendor/squizlabs/php_codesniffer/phpcs.xsd | ||
|
||
# This script discards Warnings, and only checks one standard, so shouldn't be considered a full PHPCS run. | ||
- name: Run PHPCS | ||
run: composer cs | ||
|
||
# Check the code-style consistency of the PHP files. | ||
# - name: Check PHP code style | ||
# continue-on-error: true | ||
# run: vendor/bin/phpcs --report-full --report-checkstyle=./phpcs-report.xml | ||
|
||
# - name: Show PHPCS results in PR | ||
# run: cs2pr ./phpcs-report.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
.DS_Store | ||
.svn | ||
.idea/ | ||
wpcom-helper.php | ||
/node_modules/ | ||
/vendor/ | ||
/.phpcs.xml | ||
/composer.lock | ||
/vendor | ||
node_modules | ||
/phpcs.xml | ||
/phpunit.xml | ||
/wpcom-helper.php |
File renamed without changes.
File renamed without changes.