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