dwyl / learn-travis

:sunglasses: A quick Travis CI (Continuous Integration) Tutorial for Node.js developers
MIT License
1.25k stars 352 forks source link

Instructions for using Travis-CI for an Elixir Project? #19

Closed nelsonic closed 6 years ago

nelsonic commented 7 years ago

Get excited it appears to be working... https://docs.travis-ci.com/user/languages/elixir/

.travis.yml for Elixir Projects:

language: elixir
elixir:
  - 1.4
env:
  - MIX_ENV=test
script:
  - mix do deps.get, compile --warnings-as-errors, coveralls.json, dogma
after_success:
  - bash <(curl -s https://codecov.io/bash)
tonydaly commented 7 years ago

👻

nelsonic commented 6 years ago

GOTO: https://github.com/dwyl/learn-travis#elixir-lang-project 🚀