We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cc7c70 commit 8c56ec6Copy full SHA for 8c56ec6
.github/workflows/main.yml
@@ -52,3 +52,14 @@ jobs:
52
php_version: "${{ matrix.php-version }}"
53
configuration: "phpstan.neon"
54
path: "src/"
55
+ codesniffer:
56
+ runs-on: "ubuntu-latest"
57
+ steps:
58
+ - name: "git checkout"
59
+ uses: "actions/checkout@v3"
60
+ - name: "Install PHP_CodeSniffer"
61
+ run: "curl -OLf https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar"
62
+ - name: "check PHP_CodeSniffer version"
63
+ run: "php phpcs.phar --version"
64
+ - name: "PHP CodeSniffer"
65
+ run: "php phpcs.phar"
0 commit comments