diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1078c2e --- /dev/null +++ b/.travis.yml @@ -0,0 +1,6 @@ +language: erlang +otp_release: + - 20.3.8 +script: + - chmod u+x rebar3 + - ./rebar3 do upgrade, compile, dialyzer, xref, eunit diff --git a/README.md b/README.md index 44624cd..1cfc224 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ ## Introduction +[![Build Status](https://travis-ci.com/martinsumner/leveled.svg?branch=master)](https://travis-ci.com/martinsumner/leveled) + Leveled is a simple Key-Value store based on the concept of Log-Structured Merge Trees, with the following characteristics: - Optimised for workloads with larger values (e.g. > 4KB). diff --git a/rebar3 b/rebar3 new file mode 100755 index 0000000..00494f9 Binary files /dev/null and b/rebar3 differ