Skip to content

Commit 6be6275

Browse files
committed
Add Travis-CI Integration
This makes Travis run `cargo build` and `cargo test`, making sure that we never push broken code.
1 parent 8d98245 commit 6be6275

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
install:
2+
- wget http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz -O - | sudo tar zxf - --strip-components 1 -C /usr/local
3+
- yes | sudo add-apt-repository ppa:cmrx64/cargo
4+
- sudo apt-get update
5+
- sudo apt-get install cargo
6+
script:
7+
- cargo build
8+
- cargo test
9+
os:
10+
- linux
11+

0 commit comments

Comments
 (0)