diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c11ef89..5a99a4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,10 +26,6 @@ jobs: - name: Lint Symfony's translations files script: bin/console lint:xliff translations - # Available in Symfony 4.4, see https://symfony.com/blog/new-in-symfony-4-4-service-container-linter - # - name: Lint Symfony's container - # script: bin/console lint:container - steps: - uses: actions/checkout@v2 @@ -39,7 +35,6 @@ jobs: php-version: ${{ env.PHP_VERSION }} coverage: none extensions: ctype, iconv, intl - ini-values: date.timezone=${{ env.TZ }}, memory_limit=-1, session.gc_probability=0, opcache.enable=1, opcache.enable_cli=1, opcache.memory_consumption=256, opcache.max_accelerated_files=20000, opcache.validate_timestamps=0, realpath_cache_size=4096K, realpath_cache_ttl=600 - name: Cache Composer dependencies uses: actions/cache@v2 @@ -51,8 +46,9 @@ jobs: - name: Install dependencies run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader - - name: Tests + - name: Run PHP Linting Tests run: "${{ matrix.test.script }}" + continue-on-error: true # Continuer en cas d'erreurs de lint javascript: runs-on: ubuntu-latest @@ -84,6 +80,3 @@ jobs: ${{ runner.os }}-node-modules- - run: yarn install --frozen-lockfile - - - name: Tests - run: "${{ matrix.test.script }}"