【发布时间】:2020-06-30 04:49:01
【问题描述】:
我刚刚为one of my Elixir Projects 设置了Travis CI,它似乎工作正常,只是作业日志为空。
我试过了:
- 谷歌搜索
- 浏览 Travis CI 文档
- 使用
.travis.yml配置文件
但完全不知道为什么日志是空的。这是 Github Project 和 Travis Job。
我的.travis.yml:
language: elixir
elixir:
- 1.3.0
otp_release:
- 18.0
sudo: false
services:
- postgresql
before_script:
- cp config/travis_ci.exs config/config.exs
- mix deps.get --only test
script:
- mix test
after_script:
- mix deps.get --only docs
- MIX_ENV=docs mix inch.report
【问题讨论】: