Skip to content

Bump guzzlehttp/psr7 from 2.7.0 to 2.13.0 #55

Bump guzzlehttp/psr7 from 2.7.0 to 2.13.0

Bump guzzlehttp/psr7 from 2.7.0 to 2.13.0 #55

Workflow file for this run

name: PHPUnit
on:
pull_request:
push:
branches:
- main
env:
COMPOSER_ARGS: --no-interaction
COVERAGE_DEPS: php-coveralls/php-coveralls
jobs:
tests:
name: Tests
strategy:
matrix:
php: ['8.2', '8.3']
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
extensions: mbstring, xml, json
tools: php-cs-fixer, phpunit
coverage: xdebug
- name: Install dependencies
run: |
composer install $COMPOSER_ARGS
composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS
- name: Test
run: |
composer test-coverage
composer cs-check
composer license-check
composer phpstan
- name: Upload coverage results to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: vendor/bin/php-coveralls -v