diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 800aac8..d00f7a0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,6 +19,8 @@ jobs: - "7.4" - "8.0" - "8.1" + - "8.2" + - "8.3" steps: - name: Checkout @@ -35,16 +37,16 @@ jobs: - name: Run PHPUnit run: vendor/bin/phpunit - if: ${{ matrix.php-version != '8.0' }} + if: ${{ matrix.php-version != '8.3' }} - name: Run PHPUnit with coverage run: | mkdir -p mkdir -p build/logs vendor/bin/phpunit --coverage-clover build/logs/clover.xml - if: ${{ matrix.php-version == '8.0' }} + if: ${{ matrix.php-version == '8.3' }} - 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.3' }}