From df408fb8bc362aefafc164cffbced51fd0274746 Mon Sep 17 00:00:00 2001 From: Eugene Molotov Date: Sun, 26 Dec 2021 09:25:36 +0500 Subject: [PATCH] [CI] Temporarly disable phpunit7 until it starts working again (#2392) --- .github/workflows/tests.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3d289108..3d28d34d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,18 +7,19 @@ on: branches: [ master ] jobs: - 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/ + # 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/ phpunit8: runs-on: ubuntu-20.04