-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path.travis.yml
40 lines (37 loc) · 926 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
31
32
33
34
35
36
37
38
39
dist: xenial
matrix:
include:
- language: python
python: 3.7
install:
- pip install -r ./traiders/backend/requirements.txt
script:
- cd traiders/backend
- python -m pycodestyle --ignore=E501 .
- python manage.py makemigrations
- python manage.py makemigrations api
- python manage.py migrate
- python manage.py test
- language: node_js
node_js:
- "11"
install:
- cd traiders/frontend
- npm install
script:
- npm run review
cache:
directories:
- traiders/frontend/node_modules
# - language: android
# dist: trusty
# jdk: oraclejdk8
# android:
# components:
# - tools
# - android-25
# - build-tools-25.0.3
# before_script:
# - cd android/AppName
# script:
# - ./gradlew build connectedCheck