aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorbors[bot] <bors[bot]@users.noreply.github.com>2018-10-09 07:16:36 +0100
committerbors[bot] <bors[bot]@users.noreply.github.com>2018-10-09 07:16:36 +0100
commitc9798c0e6da53c132021f03ac7a50ccd8714b371 (patch)
tree0d6d49b2eb40ad161a72adbfbf9874b64540bf74 /.travis.yml
parentf4ad36e972989c3feed8671d6d6fca0aed37cd8f (diff)
parente26071d96e1ff56289213dbe78415f836de8a70e (diff)
Merge #104
104: Add vscode extension to CI r=aochagavia a=DJMcNab Note that this testing is only done on travis - we are only running formatting and linting, so feature parity on appveyor is not required. CC @aochagavia. Fixes? #100 Co-authored-by: Daniel McNab <[email protected]>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml13
1 files changed, 9 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 7561183df..f8130a595 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,19 +1,24 @@
1language: rust
2
3matrix: 1matrix:
4 include: 2 include:
5 - rust: stable 3 - language: rust
4 rust: stable
6 script: 5 script:
7 - cargo gen-kinds --verify 6 - cargo gen-kinds --verify
8 - cargo gen-tests --verify 7 - cargo gen-tests --verify
9 - cargo test 8 - cargo test
10 # - rust: nightly 9 # - language: rust
10 # rust: nightly
11 # before_script: 11 # before_script:
12 # - rustup component add clippy-preview 12 # - rustup component add clippy-preview
13 # - rustup component add rustfmt-preview 13 # - rustup component add rustfmt-preview
14 # script: 14 # script:
15 # - cargo fmt --all -- --check || true 15 # - cargo fmt --all -- --check || true
16 # - cargo clippy 16 # - cargo clippy
17 - language: node_js
18 node_js: node
19 before_script: false
20 script:
21 - cd editors/code && npm ci && npm run travis; cd ../..
17 22
18 allow_failures: 23 allow_failures:
19 - rust nightly 24 - rust nightly