diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..c7b374b --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +sudo: false +language: rust +rust: + - stable + - beta + - nightly +matrix: + allow_failures: + - rust: nightly +os: + - linux + +install: + - (rustup component add rustfmt || true) + - PATH=$PATH:/home/travis/.cargo/bin + +env: + global: + - RUST_BACKTRACE=1 + +script: + - cargo fmt --all -- --check + - cargo build --verbose --all + - cargo test --verbose --all diff --git a/README.md b/README.md index ffd7689..8a70c7a 100644 --- a/README.md +++ b/README.md @@ -1 +1,6 @@ -# MinIO client for the Rust programming language +# MinIO Rust SDK for Amazon S3 Compatible Cloud Storage [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io) + +## License +MinIO Rust SDK is distributed under the terms of the Apache 2.0 license. + +See [LICENSE](LICENSE) for details.