From 2986baf4842d3170d871ed5433760de32587dc73 Mon Sep 17 00:00:00 2001 From: Yuriy Glukhov Date: Thu, 1 Mar 2018 13:05:02 +0200 Subject: [PATCH] Travis config --- .travis.yml | 8 ++++++++ README.md | 1 + 2 files changed, 9 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..1949ca7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,8 @@ +sudo: required +services: + - docker +before_install: + - docker pull yglukhov/nim-base +script: + - docker run yglukhov/nim-base nim --version + - docker run -v "$(pwd):/project" -w /project yglukhov/nim-base sh -c "nimble install -dy && nimble test" diff --git a/README.md b/README.md index feb0304..2fc2fc3 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ [![License: Apache](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) ![Stability: experimental](https://img.shields.io/badge/stability-experimental-orange.svg) +[![Build Status](https://travis-ci.org/status-im/nim-eth-keys.svg?branch=master)](https://travis-ci.org/status-im/nim-eth-keys) A reimplementation in pure Nim of [eth-keys](https://github.com/ethereum/eth-keys), the common API for Ethereum key operations.