From bdc579b896c7ea073d40a000df22d8f6773ea3d8 Mon Sep 17 00:00:00 2001 From: Oleg Zhulnev Date: Mon, 11 Oct 2021 23:34:44 +0300 Subject: [PATCH] fix pipeline --- .github/workflows/ci.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 594611494b..bc499ac4a3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -68,13 +68,17 @@ jobs: # Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary)" is not fixed if [[ "${{ matrix.php-version }}" == '8.1' ]]; then export SYMFONY_DEPRECATIONS_HELPER=max[direct]=1 - else - make test-unit fi + make test-unit + - name: Run integration tests shell: bash run: | + if [[ "${{ matrix.php-version }}" == '8.1' ]]; then + export SYMFONY_DEPRECATIONS_HELPER=max[direct]=1 + fi + make test-unit PHPUNIT_GROUP=integration - name: Cache E2E tests dependencies