Skip to content

Commit

Permalink
ci: test all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
shakyShane committed Nov 7, 2018
1 parent ed1a944 commit 020bbe4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Expand Up @@ -25,4 +25,4 @@ before_script:
script:
# - cargo fmt --all -- --check
- cargo build
- cargo test
- bash ./test.sh
13 changes: 13 additions & 0 deletions test.sh
@@ -0,0 +1,13 @@
#!/usr/bin/env bash

# Main package
cargo test

# Rjs package (for wasm)
cd rjs-parse
cargo test
cd -

# from-file package
cd from-file
cargo test

0 comments on commit 020bbe4

Please sign in to comment.