From 35b905c074504de48bbcd4ed98d73db90d4887aa Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Fri, 25 Mar 2022 16:09:05 +0500 Subject: [PATCH] [core] Re-enable phpunit tests (#2393) --- .github/workflows/tests.yml | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f0c589a6..61985342 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,19 +7,18 @@ on: branches: [ master ] jobs: - # TODO: return back when fixed https://github.com/RSS-Bridge/rss-bridge/issues/2391 - # phpunit7: - # runs-on: ubuntu-20.04 - # strategy: - # matrix: - # php-versions: ['7.1', '7.2', '7.3'] - # steps: - # - uses: actions/checkout@v2 - # - uses: shivammathur/setup-php@v2 - # with: - # php-version: ${{ matrix.php-versions }} - # - run: composer global require phpunit/phpunit ^7 - # - run: phpunit --configuration=phpunit.xml --include-path=lib/ + phpunit7: + runs-on: ubuntu-20.04 + strategy: + matrix: + php-versions: ['7.1', '7.2', '7.3'] + steps: + - uses: actions/checkout@v2 + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php-versions }} + - run: composer global require phpunit/phpunit ^7 + - run: phpunit --configuration=phpunit.xml --include-path=lib/ phpunit8: runs-on: ubuntu-20.04