Skip to content

Commit

Permalink
Merge pull request #26 from smartcitiesdata/smrt_1209_1
Browse files Browse the repository at this point in the history
SMRT-1209 Updating README with travis integration information
  • Loading branch information
Jarred Olson authored May 8, 2019
2 parents 5d29997 + fcd4ee5 commit 62dba56
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ install:
- mix credo
script:
- mix test
branches:
only:
- master
deploy:
skip_cleanup: true
provider: script
Expand Down
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![Master](https://travis-ci.org/smartcitiesdata/divo.svg?branch=master)](https://travis-ci.org/smartcitiesdata/divo)
[![Hex.pm Version](http://img.shields.io/hexpm/v/divo.svg?style=flat)](https://hex.pm/packages/divo)

# Getting Started

Easily run Elixir integration tests with docker-compose.
Expand All @@ -10,7 +13,7 @@ The package can be installed by adding `divo` to your list of dependencies in `m
```elixir
def deps() do
[
{:divo, "~> 1.1.2", only: [:dev, :integration]}
{:divo, "~> 1.1.3", only: [:dev, :integration]}
]
end
```
Expand Down Expand Up @@ -53,7 +56,7 @@ In your mix file, include the additional dependency
#mix.exs
def deps() do
[
{:divo, "~> 1.1.2", only: [:dev, :integration]},
{:divo, "~> 1.1.3", only: [:dev, :integration]},
{:divo_redis, "~> 0.1.0", only: [:dev, :integration]}
]
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule Divo.MixProject do
def project do
[
app: :divo,
version: "1.1.2",
version: "1.1.3",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 62dba56

Please sign in to comment.