Skip to content

Expand compatability with newer psr/log and psr/http-message versions… #10

Expand compatability with newer psr/log and psr/http-message versions…

Expand compatability with newer psr/log and psr/http-message versions… #10

Workflow file for this run

name: Codeception tests
on: [push]
jobs:
build:
name: PHP ${{ matrix.php }}, Mode ${{ matrix.mode }}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest ]
php: [ '8.0', '8.1', '8.2', '8.3' ]
mode: ['stable', 'lowest']
exclude:
- php: '8.1'
mode: 'lowest'
- php: '8.2'
mode: 'lowest'
- php: '8.3'
mode: 'lowest'
steps:
- uses: actions/checkout@master
- name: Setup PHP
uses: nanasess/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Install dependencies in stable mode
if: matrix.mode == 'stable'
run: composer update --no-interaction --no-progress --optimize-autoloader --ansi
- name: Install lowest supported dependencies in lowest mode
if: matrix.mode == 'lowest'
run: composer update --prefer-lowest --no-interaction --no-progress --optimize-autoloader --ansi
- name: Run tests
run: php vendor/bin/codecept run