mirror of
https://github.com/denoland/deno.git
synced 2024-10-30 09:08:00 -04:00
parent
280856f8d8
commit
77b1b40bd1
2 changed files with 18 additions and 0 deletions
15
.travis.yml
Normal file
15
.travis.yml
Normal file
|
@ -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
|
3
test.ts
Normal file
3
test.ts
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
import "./buffer_test.ts";
|
||||||
|
import "./bufio_test.ts";
|
||||||
|
// TODO import "./http_test.ts";
|
Loading…
Reference in a new issue