Skip to content

Fix not display response body if option is false #78

Fix not display response body if option is false

Fix not display response body if option is false #78

Workflow file for this run

name: Continuous Integration
on: [push, pull_request]
jobs:
linter:
name: Code style
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@v2
with:
php-version: 8.0
- run: composer install --prefer-dist --no-interaction
- run: bin/php-cs-fixer fix --dry-run --stop-on-violation --diff --ansi
tests:
name: Tests
runs-on: ubuntu-18.04
strategy:
matrix:
version: ['8.0', '8.1']
flags: ['', '--prefer-lowest']
fail-fast: false
steps:
- uses: actions/checkout@master
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
coverage: xdebug2
- run: composer update --prefer-dist --no-interaction ${{ matrix.flags }}
- run: bin/atoum