Code Modernization: Replace usage of strpos() and substr() with str_starts_with()
#124
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: Plugin Check | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| plugin-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Composer dependencies | |
| run: composer install --no-dev --no-interaction | |
| - name: Build | |
| run: composer run-script build | |
| - name: Run plugin check | |
| uses: wordpress/plugin-check-action@v1 | |
| with: | |
| build-dir: './multisyde' |