From 99eb6e3e960458cbb9e685ea6da0d5cca386666c Mon Sep 17 00:00:00 2001 From: Tom Shen Date: Mon, 19 Sep 2016 18:31:29 -0700 Subject: [PATCH] Add Travis CI integration --- .travis.yml | 8 ++++++++ README.md | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..687c875 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +language: rust +rust: + - stable + - beta + - nightly +matrix: + allow_failures: + - nightly diff --git a/README.md b/README.md index a1c16e1..a132c8a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # rust-syndication +[![Build Status](https://travis-ci.org/tomshen/rust-syndication.svg?branch=master)](https://travis-ci.org/tomshen/rust-syndication) + Library for serializing Atom and RSS web feeds. Wraps around [rust-atom](https://github.com/vtduncan/rust-atom) and [rust-rss](https://github.com/frewsxcv/rust-rss). ## Usage