-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
30 lines (23 loc) · 886 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Travis CI (https://travis-ci.org/dubreuia/intellij-plugin-save-actions)
env:
- TERM=dumb
dist: bionic
language: java
jdk:
- oraclejdk11
script:
- cd exercices/dubreuia-cars && ./gradlew test && cd ../../
- cd exercices/eugenp-javax-servlets && ./gradlew test && cd ../../
- cd exercices/exercism-darts && ./gradlew test && cd ../../
- cd exercices/exercism-grep2 && ./gradlew test && cd ../../
- cd exercices/exercism-rna-transcription && ./gradlew test && cd ../../
- cd exercices/exercism-two-fer && ./gradlew test && cd ../../
- cd exercices/exercism-yacht && ./gradlew test && cd ../../
- cd exercices/frank-cowboy && ./gradlew test && cd ../../
- cd exercices/frank-lego && ./gradlew test && cd ../../
- cd exercices/frank-vat && ./gradlew test && cd ../../
branches:
only:
- /.*/
notifications:
email: true