[5.x] Fix statamic-prefixed commands not working when running Artisan::call() within please #2375
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: Lint PHP code style issues | |
on: | |
pull_request: | |
paths: | |
- '**.php' | |
jobs: | |
lint-php-code-styling: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Check PHP code style issues | |
uses: aglipanci/laravel-pint-action@1.0.0 | |
with: | |
testMode: true | |
verboseMode: true |