diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-11-08 11:57:00 -0500 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-11-08 11:58:41 -0500 |
| commit | a628a499fa7794ef421e814ae487635890af1cb3 (patch) | |
| tree | c6d8ae9f9c9964fbe43d46f8c68b653387a0bbda | |
| parent | e97fdcac47a7ff53143b15e6686a773bd6202e10 (diff) | |
Simplify travis.
Original: https://github.com/denoland/deno_std/commit/22151e4f7bddfa14aed096d7ad7d021b026b562b
| -rw-r--r-- | .travis.yml | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/.travis.yml b/.travis.yml index 1a75f9cbd..7da118d4d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,15 +1,8 @@ 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" +- curl -sSf https://raw.githubusercontent.com/denoland/deno_install/master/install.py | python +- export PATH="$HOME/.deno/bin:$PATH" script: - - deno test.ts +- deno test.ts |
