fix: attempt to only remember received content when the header is within success range by http spec #10642
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: CS Test Suite | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
style_phpcs: | |
runs-on: ubuntu-latest | |
name: PHP Style Check | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: Install Dependencies | |
run: composer global require "squizlabs/php_codesniffer:3.*" | |
- name: Run PHPCS Code Style Checker | |
run: ~/.composer/vendor/bin/phpcs --standard=phpcs-ruleset.xml -p | |
style_csfixer: | |
name: PHP CS Fixer | |
uses: GoogleCloudPlatform/php-tools/.github/workflows/code-standards.yml@main | |
with: | |
config: GoogleCloudPlatform/php-tools/.php-cs-fixer.default.php@main | |
exclude-patterns: | | |
[ | |
"#.*/src/V[0-9]+#", | |
"#.*/src/.*/V[0-9]+#", | |
"#.*/(tests|samples|metadata)#", | |
"vendor", | |
"dev", | |
"docs", | |
"AccessContextManager/src/Type", | |
"Asset/external", | |
"BigQueryDataExchange/src/Common", | |
"CommonProtos", | |
"Core/src/Testing", | |
"GSuiteAddOns/external", | |
"OsLogin/src/Common", | |
"LongRunning/src/ApiCore/LongRunning", | |
"LongRunning/src/LongRunning", | |
"Translate/src/Connection", | |
"Translate/src/TranslateClient.php" | |
] | |
staticanalysis: | |
runs-on: ubuntu-latest | |
name: PHPStan Static Analysis | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
- name: "Install dependencies" | |
run: | | |
composer --no-interaction --no-ansi --no-progress update | |
composer --no-interaction --no-ansi --no-progress update -d dev | |
- name: Run Static Analysis | |
run: | | |
dev/sh/static-analysis |