Skip to content

Commit 5c74897

Browse files
committed
Add Travis auto-build and coverage badges.
1 parent 38be732 commit 5c74897

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: scala
2+
scala:
3+
- 2.12.3
4+
jdk:
5+
- oraclejdk8
6+
7+
script: "sbt clean coverage test"
8+
after_success: "sbt coveralls"

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Build Status
2+
[![Build Status](https://travis-ci.org/izmailoff/scala-nn.png?branch=master)](https://travis-ci.org/izmailoff/scala-nn)
3+
4+
# Test Coverage
5+
[![Coverage Status](https://coveralls.io/repos/izmailoff/scala-nn/badge.svg?branch=master)](https://coveralls.io/r/izmailoff/scala-nn?branch=master)
6+
17
# scala-nn
28
A Neural Network (NN) implemented in Scala from scratch.
39

project/plugins.sbt

+4
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.5")
22

3+
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1")
4+
5+
addSbtPlugin("org.scoverage" % "sbt-coveralls" % "1.2.2")
6+

0 commit comments

Comments
 (0)