fix: use 'loader' in MyAdmin::renderAdmin() #480
Workflow file for this run
This file contains hidden or 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 Linting (Overtrue) | |
| on: | |
| push: | |
| branches-ignore: | |
| # notest branches to ignore testing of partial online commits | |
| - "notest/**" | |
| pull_request: | |
| branches-ignore: | |
| # notest branches to ignore testing of partial online commits | |
| - "notest/**" | |
| workflow_call: | |
| permissions: | |
| contents: read | |
| jobs: | |
| # This is how to reuse this workflow: | |
| # call-workflow: | |
| # uses: WorkOfStan/MyCMS/.github/workflows/overtrue-phplint.yml@main | |
| phplint: | |
| runs-on: ubuntu-latest | |
| # Limit the running time | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Check PHP syntax errors | |
| uses: overtrue/phplint@10.0 |