Skip to content

Test against PHP 8.2 + 8.3 #143

Test against PHP 8.2 + 8.3

Test against PHP 8.2 + 8.3 #143

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.0, 8.1, 8.2]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pdo, sqlite
coverage: none
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run test suite
run: php vendor/bin/codecept run
- name: Run source code analysis
run: php vendor/bin/phpstan