Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
sidz committed Oct 11, 2021
1 parent 0426d7f commit bdc579b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yaml
Expand Up @@ -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
Expand Down

0 comments on commit bdc579b

Please sign in to comment.