Skip to content

Now allowing PHP 7.4. #6

Now allowing PHP 7.4.

Now allowing PHP 7.4. #6

Workflow file for this run

name: tests
on: push
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.4', '8.0', '8.1', '8.2']
steps:
- uses: actions/checkout@v2
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: yaml
tools: composer:v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run Codeception tests
run: vendor/bin/codecept run