From 579b868022232743fc5f55b600f0a4ba7171d9e5 Mon Sep 17 00:00:00 2001 From: Scott Aubrey Date: Fri, 18 Oct 2024 12:31:41 +0100 Subject: [PATCH] enable all supported versions to enforce testing in CI --- .github/workflows/ci.yaml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 399f0328..727d0a30 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,18 +16,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php_version: ["7.1", "7.2", "7.3", "7.4"] + php_version: ["7.1", "7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"] steps: - uses: actions/checkout@v4 - name: Run tests run: make PHP_VERSION=${{ matrix.php_version }} test - tests-future-versions: - runs-on: ubuntu-latest - strategy: - matrix: - php_version: ["8.0", "8.1", "8.2", "8.3"] - steps: - - uses: actions/checkout@v4 - - name: Run tests against all major versions of PHP - run: make PHP_VERSION=${{ matrix.php_version }} test - continue-on-error: true