From fb1653bb2ed7b896705829154d37534993e330af Mon Sep 17 00:00:00 2001 From: Benjamin Morel Date: Sun, 26 Jun 2022 00:20:05 +0200 Subject: [PATCH] Run coverage on PHP 8.1 --- .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 14aa08d..447f508 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,16 +34,16 @@ jobs: - name: Run PHPUnit run: vendor/bin/phpunit - if: ${{ matrix.php-version != '8.0' }} + if: ${{ matrix.php-version != '8.1' }} - name: Run PHPUnit with coverage run: | mkdir -p build/logs vendor/bin/phpunit --coverage-clover build/logs/clover.xml - if: ${{ matrix.php-version == '8.0' }} + if: ${{ matrix.php-version == '8.1' }} - name: Upload coverage report to Coveralls run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v env: COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }} - if: ${{ matrix.php-version == '8.0' }} + if: ${{ matrix.php-version == '8.1' }}