ExCodeship
A Codeship wrapper for Elixir
Requires an environment variable to be set for CODESHIP_KEY which can be obtained in your codeship accountInstallation
Add ex_codeship to your list of dependencies in
mix.exs:def deps do
[{:ex_codeship, "~> 0.0.1"}]end
Ensure ex_codeship is started before your application:
def application do
[applications: [:ex_codeship]]end