Closed mtwilliams closed 7 years ago
Setting up for Travis CI would only require you to add a .travis.yml:
.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
@mtwilliams feel free to send a PR for this. :)
@gjaldon I created #28 PR for this issue :)
Setting up for Travis CI would only require you to add a
.travis.yml
: