From a4cddac199ce3927e92c10b53d132c385c4e8f08 Mon Sep 17 00:00:00 2001 From: Martin Frost Date: Thu, 18 Jun 2015 18:02:27 +0200 Subject: [PATCH] Add Semaphore CI build status badge --- README.md | 2 ++ test/isn_test.exs | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1b47355..36c4d32 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # Isn +[![Build Status](https://semaphoreci.com/api/v1/projects/be7c4c34-c49e-45c7-9320-3fcc4f7f476a/458429/badge.svg)](https://semaphoreci.com/frost/isn) + Isn adds a [`Postgrex.Extension`][1] and [`Ecto.Type`][2] definitions for the datatypes defined in the [`isn`][3] PostgreSQL module. diff --git a/test/isn_test.exs b/test/isn_test.exs index abb09a4..3998b71 100644 --- a/test/isn_test.exs +++ b/test/isn_test.exs @@ -4,7 +4,7 @@ defmodule IsnTest do alias Postgrex.Connection, as: P setup do - options = Keyword.merge(conn_options, [extensions: [{Isn, {}}]]) + options = Keyword.merge(conn_options, [extensions: [{Isn, {}}]]) {:ok, pid} = P.start_link(options) {:ok, [pid: pid]} end