From 77b1b40bd108c41938a2c639f80c7de83a8cf80f Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 7 Nov 2018 14:23:06 -0500 Subject: Add travis script Original: https://github.com/denoland/deno_std/commit/7117998ab8f8695c8983c1961c038e59473268e3 --- .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 000000000..1a75f9cbd --- /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 000000000..4e65e4c39 --- /dev/null +++ b/test.ts @@ -0,0 +1,3 @@ +import "./buffer_test.ts"; +import "./bufio_test.ts"; +// TODO import "./http_test.ts"; -- cgit v1.2.3