Drop php-cs-fixer and setup phpcs #3
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: "Coding Standards" | ||
on: | ||
pull_request: | ||
branches: | ||
- "master" | ||
paths: | ||
- ".github/workflows/coding-standards.yml" | ||
- "composer.*" | ||
- "src/**" # but some packages use lib | ||
- "phpcs.xml.dist" | ||
- "tests/**" | ||
push: | ||
branches: | ||
- "master" | ||
paths: | ||
- ".github/workflows/coding-standards.yml" | ||
- "composer.*" | ||
- "src/**" # but some packages use lib | ||
- "phpcs.xml.dist" | ||
- "tests/**" | ||
jobs: | ||
coding-standards: | ||
name: "Coding Standards" | ||
uses: "beberlei/DoctrineExtensions/.github/workflows/coding-standards.yml@use_a_valid_ref_here" | ||
Check failure on line 26 in .github/workflows/coding-standards.yml GitHub Actions / .github/workflows/coding-standards.ymlInvalid workflow file
|
||
with: | ||
php-version: "6.0" # use a custom version of PHP |