From ad962d56e2d06110e026888f2731a2c7fff88604 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Mon, 5 Dec 2016 20:05:05 -0500 Subject: Add a .travis.yml --- .gitattributes | 1 + .travis.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 .travis.yml diff --git a/.gitattributes b/.gitattributes index e4504cf..084bde3 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ .git* export-ignore +.travis.yml export-ignore diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a9f1e6b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,18 @@ +language: c + +matrix: + include: + - os: linux + dist: trusty + sudo: false + compiler: gcc + + - os: linux + dist: trusty + sudo: false + compiler: clang + + - os: osx + compiler: clang + +script: make check -- cgit v1.2.3