Skip to content

Added PHP 8.4 to CI #KDS-580 #25

Added PHP 8.4 to CI #KDS-580

Added PHP 8.4 to CI #KDS-580 #25

Workflow file for this run

name: Codeception Tests
on: [ push ]
jobs:
build:
name: ${{matrix.operating-system}}, PHP ${{ matrix.php }}, Redis ${{matrix.redis-version}}
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ ubuntu-latest, ubuntu-20.04 ]
php: [ '8.0', '8.1', '8.4' ]
redis-version: [ 4, 5, 6, 7 ]
steps:
- uses: actions/checkout@master
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}
- name: Start Redis
uses: supercharge/[email protected]
with:
redis-version: ${{ matrix.redis-version }}
- name: Install dependencies
run: composer install
- name: Run tests
run: composer run test