1
0
Fork 0
mirror of https://codeberg.org/icewind/bitbuffer.git synced 2026-06-03 08:34:07 +02:00

add travis config

This commit is contained in:
Robin Appelman 2019-02-28 20:34:59 +01:00
commit 20b5ed59af

12
.travis.yml Normal file
View file

@ -0,0 +1,12 @@
language: rust
rust:
- stable
- beta
- nightly
matrix:
allow_failures:
- rust: nightly
fast_finish: true
script:
- cargo build --verbose --all
- cargo test --verbose --all