Add support for Guzzle 7 #20
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: Build | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: ~ | |
release: | |
types: [created] | |
workflow_dispatch: ~ | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: "PHP ${{ matrix.php }} - Guzzle ${{ matrix.guzzle }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
php: ["8.0", "8.1", "8.2", "8.3"] | |
guzzle: ["6.5.8", "7.5.2"] | |
steps: | |
- | |
uses: actions/checkout@v4 | |
- | |
name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
coverage: none | |
- | |
name: Restrict Guzzle version | |
if: matrix.guzzle != '' | |
run: composer require "guzzlehttp/guzzle:${{ matrix.guzzle }}" --no-update --no-scripts --no-interaction | |
- | |
name: Run Composer install | |
run: composer install -n | |
- | |
name: Run CS | |
run: vendor/bin/phpcs --standard=PSR2 src/ | |
- | |
name: Run PHPStan | |
run: vendor/bin/phpstan analyse | |
- | |
name: Run PHPSpec | |
run: vendor/bin/phpspec run |