diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-07 14:23:06 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-07 14:23:06 -0500 |
| commit | 77b1b40bd108c41938a2c639f80c7de83a8cf80f (patch) | |
| tree | 4954d6828ebfcdc105b05acb643975073f4afa69 | |
| parent | 280856f8d81c4b2e53fa8022aafae5a7c008747f (diff) | |
Add travis script
Original: https://github.com/denoland/deno_std/commit/7117998ab8f8695c8983c1961c038e59473268e3
| -rw-r--r-- | .travis.yml | 15 | ||||
| -rw-r--r-- | test.ts | 3 |
2 files changed, 18 insertions, 0 deletions
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"; |
