Skip to content

Add support for psr/http-message 2.0 #8

Add support for psr/http-message 2.0

Add support for psr/http-message 2.0 #8

Workflow file for this run

name: CI
on:
push:
pull_request:
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
tests:
name: Tests
env:
extensions: mbstring
strategy:
matrix:
include:
- php: '7.1'
- php: '7.2'
- php: '7.3'
deps: low
- php: '7.4'
coverage: yes
- php: '8.0'
- php: '8.1'
- php: '8.2'
- php: '8.3'
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
coverage: "xdebug"
ini-values: date.timezone=Europe/Kiev,memory_limit=-1,default_socket_timeout=10,session.gc_probability=0,apc.enable_cli=1,zend.assertions=1
php-version: "${{ matrix.php }}"
extensions: "${{ env.extensions }}"
- name: Configure environment
run: |
php -v
PHP_VERSION=$(php -r "echo PHP_MAJOR_VERSION . '.' . PHP_MINOR_VERSION ;")
echo $PHP_VERSION
mkdir -p build/logs
- name: Install dependencies
if: "matrix.deps != 'low'"
run: |
composer install -o -q --no-suggest
- name: Install dependencies (low)
if: "matrix.deps == 'low'"
run: |
composer install -o -q --no-suggest --prefer-lowest
- name: Run phpcs and phpunit
if: "matrix.coverage != 'yes'"
run: |
composer phpcs
vendor/bin/phpunit
- name: Run phpunit with coverage report
if: "matrix.coverage == 'yes'"
run: |
vendor/bin/phpunit --coverage-clover build/logs/clover.xml
- name: Send coverage
if: "matrix.coverage == 'yes'"
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COVERALLS_PARALLEL: true
COVERALLS_FLAG_NAME: "PHP ${{ matrix.php }}"
run: |
composer require "php-coveralls/php-coveralls:~2.5"
php vendor/bin/php-coveralls -v
curl -k https://coveralls.io/webhook?repo_token=${{ secrets.GITHUB_TOKEN }} -d "repo_name=$GITHUB_REPOSITORY&payload[build_num]=$GITHUB_RUN_ID&payload[status]=done"