From cf71dc917cd16825076faf3cbf67bb9900cbe957 Mon Sep 17 00:00:00 2001 From: angien Date: Tue, 5 Jan 2021 13:44:41 -0800 Subject: [PATCH] Add travis ci badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0feabe8..1fd872b 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # kotlin-redux +[![Build Status](https://travis-ci.org/Workday/kotlin-redux.svg?branch=main)](https://travis-ci.org/Workday/kotlin-redux) + This library is a simplified implementation of Redux written in Kotlin for Android. Redux is an architecture that was originally created in JavaScript: https://redux.js.org/. It follows a strict, unidirectional flow of data, and makes state predictable. It achieves this by ensuring the state is the single source of truth and immutable, and that changes to the state are done through pure functions.