diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 77587de5..3312b9de 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,26 +11,24 @@ on: jobs: linux_tests: - runs-on: ubuntu-20.04 + runs-on: ubuntu-24.04 strategy: fail-fast: true matrix: - php: [7.3, 7.4, '8.0', 8.1, 8.2, 8.3] - laravel: [8, 9, 10, 11] - exclude: + php: [8.2, 8.3] + laravel: [10, 11] + include: - php: 7.3 - laravel: [9, 10, 11] - - php: 7.4 - laravel: [9, 10, 11] - - php: 8.0 - laravel: [10, 11] - - php: 8.1 - laravel: [8, 11] - - php: 8.2 laravel: 8 - - php: 8.3 + - php: 7.4 laravel: 8 + - php: '8.0' + laravel: 9 + - php: 8.1 + laravel: 10 + - php: 8.4 + laravel: 11 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}