From 948352ad932ab893d720ac7d1afb79cc3f261fd6 Mon Sep 17 00:00:00 2001 From: Jesper Noordsij Date: Mon, 16 Dec 2024 18:53:43 +0100 Subject: [PATCH] Add PHP 8.4 to test CI job --- .github/workflows/testing.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 45054107d2..80d6dd2f91 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -11,19 +11,19 @@ permissions: jobs: test: runs-on: ubuntu-latest - + strategy: # if one job fails, abort the next ones too, because they'll probably fail - best to save the minutes fail-fast: false # to change to: true - + # run all combinations of the following, to make sure they're working together matrix: # os: [ubuntu-latest, macos-latest, windows-latest] - php: ['8.1', '8.2', '8.3'] + php: ['8.1', '8.2', '8.3', '8.4'] laravel: [^10.0, ^11.0] dbal: [^3.0] phpunit: [10.*] - dependency-version: [stable] # to add: lowest + dependency-version: [stable] # to add: lowest exclude: - laravel: "^11.0" php: "8.1" @@ -31,7 +31,7 @@ jobs: name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }}, PHPUnit ${{ matrix.phpunit }}, DBAL ${{ matrix.dbal }} --prefer-${{ matrix.dependency-version }} - + steps: - name: Checkout code uses: actions/checkout@v4