Adds method to unset last response in Client #311
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: tests | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
name: unit test | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['ubuntu-latest'] | |
php-version: ['7.4', '8.0', '8.1', '8.2'] | |
phpunit-version: ['latest'] | |
transport: ['', 'PhpHttp'] | |
services: | |
manticoresearch-manticore: | |
image: manticoresearch/manticore:dev | |
env: | |
EXTRA: 1 | |
ports: | |
- 9308:9308 | |
manticoresearch-manticore-2: | |
image: manticoresearch/manticore:dev | |
env: | |
EXTRA: 1 | |
ports: | |
- 5308:9308 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP {{matrix.php-version}} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: yaml, zip, curl | |
tools: phpunit | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Composer require | |
run: composer require php-http/discovery php-http/curl-client guzzlehttp/psr7 php-http/message php-http/message-factory http-interop/http-factory-guzzle | |
- name: Test | |
run: vendor/bin/phpunit -d memory_limit=4G --stop-on-failure test/ | |
env: | |
MS_HOST: 127.0.0.1 | |
MS_PORT: 9308 | |
MS_HOST2: 127.0.0.1 | |
MS_PORT2: 5308 | |
TRANSPORT: ${{ matrix.transport }} | |
stan: | |
name: static analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP 7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Composer require | |
run: composer require php-http/discovery php-http/curl-client guzzlehttp/psr7 php-http/message http-interop/http-factory-guzzle | |
- name: Run phpstan | |
run: composer phpstan | |
codestyle: | |
name: codestyle | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP 8.0 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Check code style | |
run: composer check-cs |