inline constructor default to properties #148
Workflow file for this run
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.1', '7.3', '7.4', '8.0', '8.1'] | |
phpunit-version: ['latest'] | |
transport: ['', 'PhpHttp'] | |
services: | |
manticoresearch-manticore: | |
image: manticoresearch/manticore:dev | |
ports: | |
- 9308:9308 | |
manticoresearch-manticore-2: | |
image: manticoresearch/manticore:dev | |
ports: | |
- 5308:9308 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP {{matrix.php-version}} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
extensions: yaml, zip, curl | |
tools: phpunit,phpstan | |
- 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@v2 | |
- name: Install PHP 7.4 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 7.4 | |
tools: phpstan | |
- 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: Test | |
run: phpstan analyse --level=3 src/ | |
codestyle: | |
name: codestyle | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install PHP 8.0 | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Run phpcs | |
run: composer phpcs |