Chromium Code Reviews| Index: .travis.yml |
| diff --git a/.travis.yml b/.travis.yml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..550eab01acf65cc5ec694edf4341d5607d17c932 |
| --- /dev/null |
| +++ b/.travis.yml |
| @@ -0,0 +1,10 @@ |
| +language: dart |
|
nweiz
2016/03/21 20:09:18
Historically, we've mostly tested Google packages
ochafik
2016/03/25 10:48:21
For DDC, Travis proved to be quite handy and incre
|
| +dart: |
| + - stable |
| + - dev |
| +script: |
| + - dartanalyzer --strong `find lib -name '*.dart'` |
|
nweiz
2016/03/21 20:09:18
Also add a .analysis_options file that enables str
|
| + - pub run test:test |
| +matrix: |
| + allow_failures: |
| + - dart: dev |