gjaldon / ecto_enum

Ecto extension to support enums in models
MIT License
563 stars 131 forks source link

No CI? #5

Closed mtwilliams closed 7 years ago

mtwilliams commented 8 years ago

Setting up for Travis CI would only require you to add a .travis.yml:

language: elixir
elixir:
  - 1.2.3
otp_release:
  - 18.2
addons:
  postgresql: "9.4"
# Use the new containerized infrastructure to build suppa fast.
sudo: false
# Run our test-suite.
script:
  - mix test
# Report documentation coverage to InchCI.
after_script:
  - mix deps.get --only docs
  - MIX_ENV=docs mix inch.report
gjaldon commented 8 years ago

@mtwilliams feel free to send a PR for this. :)

slashmili commented 7 years ago

@gjaldon I created #28 PR for this issue :)