Added support for exception class name instead of supplier #76
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: PHP Linter | |
on: | |
pull_request: | |
paths: | |
- '**.php' | |
jobs: | |
PHP: | |
runs-on: ubuntu-latest | |
container: | |
image: php:8.1-cli-alpine | |
steps: | |
- uses: actions/checkout@v3 | |
- run: find . -name '*.php' | xargs -trn 1 php -l |