From 69cedd0221a6c55c91ad460121c10a25f618a0d6 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Fri, 21 Oct 2016 08:25:01 -0700 Subject: Add travis.yml --- .travis.yml | 10 ++++++++++ README.md | 1 + 2 files changed, 11 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..29be054 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,10 @@ +language: rust + +cache: cargo + +rust: + - stable + - nightly + +script: + - cd utf8parse && cargo test diff --git a/README.md b/README.md index 191994f..9033b05 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ vte === +[![Build Status](https://travis-ci.org/jwilm/vte.svg?branch=master)](https://travis-ci.org/jwilm/vte) [![Crates.io Version](https://img.shields.io/crates/v/vte.svg)](https://crates.io/crates/vte/) Parser for implementing virtual terminal emulators in Rust. -- cgit