From 9a2b90afb8a7f973718bb4106ac76ee77c765ee0 Mon Sep 17 00:00:00 2001 From: Hans Erik Jepsen Date: Thu, 9 Jan 2025 13:35:39 +0100 Subject: [PATCH] Added php 8.4 to CI #KDS-574 --- .github/workflows/test.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e3dab0..27f4e76 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,6 @@ name: Codeception tests -on: [push] +on: [ push ] jobs: build: @@ -11,13 +11,13 @@ 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 }} @@ -25,4 +25,4 @@ jobs: run: composer install - name: Run tests - run: php vendor/bin/codecept run + run: composer run test