From 7b70bbf0c23b772dd3fbeb52f461749c166e6b29 Mon Sep 17 00:00:00 2001 From: Sean Molenaar Date: Fri, 2 Aug 2024 18:28:48 +0200 Subject: [PATCH] CI: test on PHP 8.0, 8.1, 8.2, and 8.3 Co-authored-by: Christoph M. Becker --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 331a917..5f4fd85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ jobs: ubuntu: strategy: matrix: - version: ["PHP-8.0", "master"] + version: ["PHP-8.0", "PHP-8.1", "PHP-8.2", "PHP-8.3"] opcache: ["opcache.enable_cli=0", "opcache.enable_cli=1"] debug: ["enable-debug", "disable-debug"] runs-on: ubuntu-latest @@ -49,7 +49,7 @@ jobs: - name: Generate Test Coverage run: lcov -c --directory ./src/.libs --exclude *Zend* --exclude */usr/include* --output-file coverage.info - name: Coveralls - uses: coverallsapp/github-action@master + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: coverage.info @@ -59,7 +59,7 @@ jobs: shell: cmd strategy: matrix: - version: ["8.0", "8.1"] + version: ["8.0", "8.1", "8.2", "8.3"] arch: [x64, x86] ts: [nts, ts] runs-on: windows-latest