diff options
author | 2022-06-24 12:00:58 +0200 | |
---|---|---|
committer | 2022-06-24 12:00:58 +0200 | |
commit | b1ae7603bfbd3daf1768b571f2d45c50f798bb95 (patch) | |
tree | caf822350076a4af65aad538bc1c31b6fb366266 | |
parent | 556f0b42370b85918968d0d6a7a86047103608b4 (diff) | |
download | rss-bridge-b1ae7603bfbd3daf1768b571f2d45c50f798bb95.tar.gz rss-bridge-b1ae7603bfbd3daf1768b571f2d45c50f798bb95.tar.zst rss-bridge-b1ae7603bfbd3daf1768b571f2d45c50f798bb95.zip |
ci: Install PHPUnit as a Composer dependency (#2857)
Now that we dropped support for deprecated PHP versions,
we can use the same PHPUnit version on all supported PHP version.
Let’s install it as a Composer dependency to have the same
PHPUnit version on the CI as on developers’ computers.
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4920aa7c..48e60ad0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,5 +17,5 @@ jobs: - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} - - run: composer global require phpunit/phpunit ^8 - - run: phpunit --configuration=phpunit.xml --include-path=lib/ + - run: composer install + - run: composer test |