From 479a93ed622fb25d6e0e0c1d1eb8c50cc35e71c6 Mon Sep 17 00:00:00 2001 From: sprak Date: Thu, 27 Jul 2023 21:39:09 -0400 Subject: [PATCH] Issue #24: Ensure code meets latest standards - Set composer-normalize to 2.31+ for PHP 8.0 test runs. --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 659aeb9..9d74569 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -24,5 +24,8 @@ jobs: - name: "Use PHPUnit 9.3+ on PHP 8" run: composer require --no-update --dev phpunit/phpunit:^9.3 if: "matrix.php == '8.0'" + - name: "Use composer-normalize 2.31+ on PHP 8" + run: composer require --no-update --dev phpunit/phpunit:^2.31 + if: "matrix.php == '8.0'" - run: composer update --no-progress ${{ matrix.composer-flags }} - run: vendor/bin/phpunit --coverage-text --coverage-clover build/logs/clover.xml