Skip to content

Commit 39f82d5

Browse files
committed
add Travis
1 parent cd22f7d commit 39f82d5

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
sudo: false
2+
dist: trusty
3+
language: scala
4+
5+
script:
6+
- sbt test
7+
8+
cache:
9+
directories:
10+
- $HOME/.ivy2/cache
11+
- $HOME/.sbt/boot/
12+
13+
before_cache:
14+
# Tricks to avoid unnecessary cache updates
15+
- find $HOME/.ivy2 -name "ivydata-*.properties" -delete
16+
- find $HOME/.sbt -name "*.lock" -delete
17+
18+
jdk:
19+
- openjdk8

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[![Build Status](https://travis-ci.com/ReactiveDesignPatterns/CodeSamples.svg?branch=master)](https://travis-ci.com/ReactiveDesignPatterns/CodeSamples)
2+
13
# Reactive Design Patterns Code Samples
24

35
This repository hosts the code samples that are used in [Reactive Design Patterns](https://www.manning.com/books/reactive-design-patterns) for illustration. We aim at full test coverage to make sure that the code that we present actually works. While we tend to start out with writing Scala or Java code, we want this repository to also hold samples in other languages (like JavaScript, Ruby, Python, etc.). Contributions, corrections, wishes and all kind of help is appreciated, please don’t hesitate to use the issue tracker.

0 commit comments

Comments
 (0)