Added PHP 8.4 to CI #KDS-580 #25
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |