diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-03-21 12:47:57 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2016-03-21 12:47:57 +0100 |
commit | 439b36323e37f669b056cc5228c44bb91196256c (patch) | |
tree | ecd84477adf3e12819b26aff2a6d2e644e45ea72 /.travis.yml | |
parent | bd46de6b25f982e1a0d3f975971fe8014db13833 (diff) | |
parent | 4083887afe4dd3f568b2dfea3392506b554c79b8 (diff) | |
download | wallabag-439b36323e37f669b056cc5228c44bb91196256c.tar.gz wallabag-439b36323e37f669b056cc5228c44bb91196256c.tar.zst wallabag-439b36323e37f669b056cc5228c44bb91196256c.zip |
Merge pull request #1774 from wallabag/v2-key-translation
Switch to keys in translated files
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5741b533..e2bf90ca 100644 --- a/.travis.yml +++ b/.travis.yml | |||
@@ -11,6 +11,7 @@ addons: | |||
11 | 11 | ||
12 | # cache vendor dirs | 12 | # cache vendor dirs |
13 | cache: | 13 | cache: |
14 | apt: true | ||
14 | directories: | 15 | directories: |
15 | - vendor | 16 | - vendor |
16 | - $HOME/.composer/cache | 17 | - $HOME/.composer/cache |
@@ -28,6 +29,9 @@ env: | |||
28 | 29 | ||
29 | matrix: | 30 | matrix: |
30 | fast_finish: true | 31 | fast_finish: true |
32 | include: | ||
33 | - php: 7.0 | ||
34 | env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run DB=sqlite | ||
31 | exclude: | 35 | exclude: |
32 | - php: hhvm | 36 | - php: hhvm |
33 | env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency | 37 | env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency |
@@ -53,3 +57,5 @@ script: | |||
53 | - travis_wait composer install --no-interaction --no-progress --prefer-dist -o | 57 | - travis_wait composer install --no-interaction --no-progress --prefer-dist -o |
54 | - ant prepare-$DB | 58 | - ant prepare-$DB |
55 | - bin/phpunit -v | 59 | - bin/phpunit -v |
60 | - if [ "$CS_FIXER" = "run" ]; then php bin/php-cs-fixer fix src/ --verbose --dry-run ; fi; | ||
61 | - if [ "$VALIDATE_TRANSLATION_FILE" = "run" ]; then php bin/console lint:yaml src/Wallabag/CoreBundle/Resources/translations ; fi; | ||