Skip to content

removed psr/log dependency as not used #18

removed psr/log dependency as not used

removed psr/log dependency as not used #18

Workflow file for this run

name: CI
on:
push: ~
pull_request: ~
jobs:
run:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: ['ubuntu-latest']
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1']
phpunit-versions: ['latest']
include:
- operating-system: 'ubuntu-latest'
php-versions: '7.2'
phpunit-versions: '8.5.13'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: soap
ini-values: post_max_size=256M, max_execution_time=180
tools: phpunit:${{ matrix.phpunit-versions }}
- name: Install Dependencies
run: composer install --no-interaction --no-suggest --prefer-dist
- name: Process the tests
run: composer test