CircleCI config added to integrate Coveralls
diff --git a/README.md b/README.md
index 74a7bbe..74eb575 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,8 @@
# Parsemail - simple email parsing Go library
-This library allows for parsing an email message into a more convenient form than the `net/mail` provides. Where the `net/mail` just gives you a map of header fields and a `io.Reader` of its body, Parsemail allows access to all the standard header fields set in [RFC5322](https://tools.ietf.org/html/rfc5322), html/text body as well as attachements/embedded as binary streams with metadata.
+
+
+This library allows for parsing an email message into a more convenient form than the `net/mail` provides. Where the `net/mail` just gives you a map of header fields and a `io.Reader` of its body, Parsemail allows access to all the standard header fields set in [RFC5322](https://tools.ietf.org/html/rfc5322), html/text body as well as attachements/embedded content as binary streams with metadata.
## Simple usage
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000..284075c
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,8 @@
+test:
+ pre:
+ - go get github.com/mattn/goveralls
+ override:
+ - ! gofmt -s -d . 2>&1 | read
+ - go test -v -cover -race -coverprofile=/home/ubuntu/coverage.out
+ post:
+ - /home/ubuntu/.go_workspace/bin/goveralls -coverprofile=/home/ubuntu/coverage.out -service=circle-ci -repotoken=$COVERALLS_TOKEN