Skip to content

Commit

Permalink
Added php 8.4 to CI #KDS-574
Browse files Browse the repository at this point in the history
  • Loading branch information
vortrixs committed Jan 9, 2025
1 parent 9ac040f commit 9a2b90a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Codeception tests

on: [push]
on: [ push ]

jobs:
build:
Expand All @@ -11,18 +11,18 @@ jobs:
strategy:
matrix:
operating-system: [ ubuntu-latest, ubuntu-20.04 ]
php: [ '8.0', '8.1' ]
php: [ '8.0', '8.1', '8.4' ]

steps:
- uses: actions/checkout@master

- name: Setup PHP
uses: nanasess/setup-php@master
- name: Setup PHP Action
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php }}

- name: Install dependencies
run: composer install

- name: Run tests
run: php vendor/bin/codecept run
run: composer run test

0 comments on commit 9a2b90a

Please sign in to comment.