Test Upgrade WordPress Coding Standards to 3.1.0 #1
Workflow file for this run
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
name: WPCS check | |
on: pull_request | |
jobs: | |
phpcs: | |
name: WPCS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: WPCS check | |
uses: 10up/wpcs-action@fix/35-upgrade-wordpress-coding-standards-to-3.1 | |
vipcs: | |
name: VIPCS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: VIPCS check | |
uses: 10up/wpcs-action@fix/35-upgrade-wordpress-coding-standards-to-3.1 | |
with: | |
standard: 'WordPress-VIP-Go' | |
tenupcs: | |
name: 10upCS | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: 10upCS check | |
uses: 10up/wpcs-action@fix/35-upgrade-wordpress-coding-standards-to-3.1 | |
with: | |
standard: 10up-Default | |
enable_warnings: true |