Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Noelierx authored Aug 8, 2024
1 parent 92fa346 commit a6e91df
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +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: Install Composer 1.x
run: composer self-update --1

- name: Cache Composer dependencies
uses: actions/cache@v2
Expand All @@ -47,14 +43,12 @@ jobs:
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Update dependencies
run: composer update --no-progress --prefer-dist --optimize-autoloader

- 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
Expand Down Expand Up @@ -86,6 +80,3 @@ jobs:
${{ runner.os }}-node-modules-
- run: yarn install --frozen-lockfile

- name: Tests
run: "${{ matrix.test.script }}"

0 comments on commit a6e91df

Please sign in to comment.