-
Notifications
You must be signed in to change notification settings - Fork 10
/
.travis.yml
42 lines (40 loc) · 1.07 KB
/
.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
40
41
42
os: linux
matrix:
include:
- language: dart
dart: stable
stage: Flutter Mobile Application Test
before_install:
- "cd dengue_app"
addons:
apt:
packages:
- lib32stdc++6
install:
- git clone https://github.com/flutter/flutter.git -b stable
- ./flutter/bin/flutter doctor
script:
- ./flutter/bin/flutter test
cache:
directories:
- $HOME/.pub-cache
- language: python
python:
- "3.7"
stage: Flask API Test
before_install:
- "cd backend"
install:
- pip install -r requirements.txt
script:
- pytest
- language: node_js
node_js:
- "node"
stage: React Admin Panel Test
before_install:
- "cd admin_panel"
install:
- yarn install
script:
- yarn test