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