Bump guzzlehttp/psr7 from 2.7.0 to 2.11.0 #250
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: Build | |
| on: [push, pull_request] | |
| jobs: | |
| phpcs: | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| php-version: [ 8.1, 8.2, 8.3 ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Composer Dependencies | |
| run: composer install --dev | |
| - name: Change permissions for phpcs | |
| run: chmod 755 build/vendor/bin/phpcs | |
| - name: Run WordPress code standard | |
| run: | | |
| ./build/vendor/bin/phpcs -v --ignore=vendor,build,tests,wpcs,scoper.inc.php --standard=./phpcs.xml ./ |