diff options
author | Kevin Decherf <kevin@kdecherf.com> | 2018-09-07 17:02:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-07 17:02:39 +0200 |
commit | 8013f35d96c42b15c1da28cdff40e97289ad4e25 (patch) | |
tree | e69798d20213b54b76ee5f95c0ef36ea3bf25cea /.scrutinizer.yml | |
parent | 495f83c92539444bff7dfd6cd647b7d65a74f949 (diff) | |
parent | c0b65ad1c982dbc0313a796be59b485223ef7e4f (diff) | |
download | wallabag-8013f35d96c42b15c1da28cdff40e97289ad4e25.tar.gz wallabag-8013f35d96c42b15c1da28cdff40e97289ad4e25.tar.zst wallabag-8013f35d96c42b15c1da28cdff40e97289ad4e25.zip |
Merge pull request #3719 from wallabag/fix-sort-parameters
Fix sort parameters
Diffstat (limited to '.scrutinizer.yml')
-rw-r--r-- | .scrutinizer.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.scrutinizer.yml b/.scrutinizer.yml index dee92922..194297f6 100644 --- a/.scrutinizer.yml +++ b/.scrutinizer.yml | |||
@@ -26,3 +26,18 @@ tools: | |||
26 | checks: | 26 | checks: |
27 | php: | 27 | php: |
28 | code_rating: true | 28 | code_rating: true |
29 | |||
30 | # use the new PHP analysis engine | ||
31 | # https://scrutinizer-ci.com/docs/tools/php/php-analyzer/guides/migrate_to_new_php_analysis | ||
32 | build: | ||
33 | nodes: | ||
34 | analysis: | ||
35 | tests: | ||
36 | override: | ||
37 | - php-scrutinizer-run | ||
38 | |||
39 | dependencies: | ||
40 | override: | ||
41 | - npm install -g 'yarn' | ||
42 | - yarn install --force | ||
43 | - COMPOSER_MEMORY_LIMIT=-1 composer install -o --no-interaction --no-progress --prefer-dist | ||