Files
spring-lock/doc/CI集成.md
2020-09-03 09:41:55 +08:00

31 lines
491 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 文档说明
作者:侯宾宾
时间2018-04-24 10:11:43
说明:如何进行项目的持续集成+测试覆盖率
# Travis-CI
[https://www.travis-ci.org](https://www.travis-ci.org) 直接添加此项目
# Coveralls
- 添加项目
[https://coveralls.io/repos/new](https://coveralls.io/repos/new) 直接添加项目
- 生成密匙
```
travis encrypt COVERALLS_TOKEN=${your_repo_token}
```
- 添加到文件
```
travis encrypt COVERALLS_TOKEN=${your_repo_token} --add
```