diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d84fea0..d7258e9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,8 +6,21 @@ jobs: fail-fast: false matrix: operating-system: [ubuntu-latest] - php-versions: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"] + php-version: + - 7.2 + - 7.3 + - 7.4 + - 8.0 + - 8.1 + - 8.2 + - 8.3 + experimental: [false] + include: + - php-version: 8.4 + experimental: true + runs-on: ${{ matrix.operating-system }} + continue-on-error: ${{ matrix.experimental }} steps: - name: Checkout code uses: actions/checkout@v2