From 7117998ab8f8695c8983c1961c038e59473268e3 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 7 Nov 2018 14:23:06 -0500 Subject: [PATCH] Add travis script --- .travis.yml | 15 +++++++++++++++ test.ts | 3 +++ 2 files changed, 18 insertions(+) create mode 100644 .travis.yml create mode 100644 test.ts diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..1a75f9cbde --- /dev/null +++ b/.travis.yml @@ -0,0 +1,15 @@ +language: python + +os: + - linux + +python: + - "2.7" + +install: +- |- + curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python + export PATH="$HOME/.deno/bin:$PATH" + +script: + - deno test.ts diff --git a/test.ts b/test.ts new file mode 100644 index 0000000000..4e65e4c391 --- /dev/null +++ b/test.ts @@ -0,0 +1,3 @@ +import "./buffer_test.ts"; +import "./bufio_test.ts"; +// TODO import "./http_test.ts";