diff --git a/ImageSharp.sln b/ImageSharp.sln
index c6ab33377..1a5cb6614 100644
--- a/ImageSharp.sln
+++ b/ImageSharp.sln
@@ -22,6 +22,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionIt
build\package.json = build\package.json
README.md = README.md
Settings.StyleCop = Settings.StyleCop
+ travis.yml = travis.yml
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Source", "Source", "{815C0625-CD3D-440F-9F80-2D83856AB7AE}"
diff --git a/README.md b/README.md
index e28480736..bd122839d 100644
--- a/README.md
+++ b/README.md
@@ -1,19 +1,24 @@
-#
ImageSharp
+#
ImageSharp
**ImageSharp** is a new cross-platform 2D graphics API designed to allow the processing of images without the use of `System.Drawing`.
> **ImageSharp is still in early stages (alpha) but progress has been pretty quick. As such, please do not use on production environments until the library reaches release candidate status. Pre-release downloads are available from the [MyGet package repository](https://www.myget.org/gallery/imagesharp).**
[](https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/APACHE-2.0-LICENSE.txt)
-[](https://ci.appveyor.com/project/JamesSouth/imagesharp/branch/master)
-[](https://codecov.io/gh/JimBobSquarePants/ImageSharp)
[](https://github.com/JimBobSquarePants/ImageSharp/issues)
[](https://github.com/JimBobSquarePants/ImageSharp/stargazers)
[](https://github.com/JimBobSquarePants/ImageSharp/network)
[](https://gitter.im/ImageSharp/General?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://twitter.com/intent/tweet?hashtags=imagesharp,dotnet,oss&text=ImageSharp.+A+new+cross-platform+2D+graphics+API+in+C%23&url=https%3a%2f%2fgithub.com%2fJimBobSquarePants%2fImageSharp&via=james_m_south)
+
+| |Build Status|Code Coverage|Static Analysis|
+|-------------|:----------:|:-----------:|:-------------:|
+|**Linux/Mac**|[](https://travis-ci.org/JimBobSquarePants/ImageSharp)|[](https://codecov.io/gh/JimBobSquarePants/ImageSharp)|[](https://scan.coverity.com/projects/11242)|
+|**Windows** |[](https://ci.appveyor.com/project/JamesSouth/imagesharp/branch/master)|[](https://codecov.io/gh/JimBobSquarePants/ImageSharp)|[](https://scan.coverity.com/projects/11242)|
+
+
### Installation
At present the code is pre-release but when ready it will be available on [Nuget](http://www.nuget.org).
diff --git a/travis.yml b/travis.yml
new file mode 100644
index 000000000..0a5838a6b
--- /dev/null
+++ b/travis.yml
@@ -0,0 +1,21 @@
+language: csharp
+solution: ImageSharp.sln
+
+env:
+ global:
+ # The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
+ # via the "travis encrypt" command using the project repo's public key
+ - secure: "aim+fUyx7kDQQcAYV1mX16cvyFEYsxiW3y26xjmeuKzsOf6DIUK328pE8KnO50bMWhfVPjuW7jWc43jI+nbUeIW5018aFcjoOrEK2F8JvJ0UKtEo+ONchypJSXA2TSdL0iIlufMBepsmlBsSLkCwHCJYohYcueZV0u9NVPc3n282KLL8ItRZeSFG/cL/a2yrkFnTFhq9OtkUtP4CcVE7BOtzjfftNcn4Rup73e5JkLT7L9AZS7eCYkIYV0KRlT2pOa/FuOHlfP9NP+NVtd83GXUY2FKBsmN3EmrQgGDTfwfwcJjN5dqIqzkIXmLV8IKQ3aiW2//02pIe5VrdqHQG+EVMRcdpCWyKUkMj0g4rGYkqKCtVJojKtOR93ycOGUDc6+cMMoyn3J2qFydkp278dGWeLuwtGfD25fHXorqK1aL9/bGPcwdinrBmcwnuy1IECtuTkEfAPsb6O4nArnDsTEzeQxwa/MAicmpux//TNKgkQGqzCPeHKbl4vOfyyI6kCsf8edWv8fOSPvJUGvL14+/TZ6lY8S+30fosOmwMCe7xlbtcVlBVtOsKx/XUufrP2Vuptlc8INaq6++XtgpCoMLL0SJfBFQKZRmBGavv1Ztyf0aL6Qp303HKGTyXOEq2k18iJmukB6JcnEGVsaAyteGlruQIbPgHWbxhZSoJZPw="
+
+before_install:
+ - echo -n | openssl s_client -connect scan.coverity.com:443 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' | sudo tee -a /etc/ssl/certs/ca-
+
+addons:
+ coverity_scan:
+ project:
+ name: "JimBobSquarePants/ImageSharp"
+ description: "Build submitted via Travis CI"
+ notification_email: james_south@hotmail.com
+ build_command_prepend: "msbuild /t:Clean"
+ build_command: "msbuild /t:Rebuild"
+ branch_pattern: coverity_scan
\ No newline at end of file