Skip to content

密码可以出现.点字符; #907

密码可以出现.点字符;

密码可以出现.点字符; #907

Workflow file for this run

name: Run PHPCS
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
phpcs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Get file changes
id: get_file_changes
uses: trilom/[email protected]
with:
githubToken: ${{ secrets.GH_BOT_TOKEN }}
output: '" "'
- name: PHPCS check
if: ${{ steps.get_file_changes.outputs.files_added != '' || steps.get_file_changes.outputs.files_modified }}
run: ./vendor/bin/phpcs "${{ steps.get_file_changes.outputs.files_added }}" "${{ steps.get_file_changes.outputs.files_modified }}" --report=checkstyle