Skip to content

Commit

Permalink
readme updates, coveralls integration
Browse files Browse the repository at this point in the history
  • Loading branch information
kujenga committed Jul 22, 2015
1 parent 513bc0c commit 649969e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Expand Up @@ -3,3 +3,11 @@ language: go
go:
- 1.3
- tip

before_install:
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover

script:
- $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
6 changes: 6 additions & 0 deletions README.md
@@ -1,2 +1,8 @@
# calc

[![Build Status](https://travis-ci.org/kujenga/calc.svg?branch=master)](https://travis-ci.org/kujenga/calc)
[![Coverage Status](https://coveralls.io/repos/kujenga/calc/badge.svg?branch=master&service=github)](https://coveralls.io/github/kujenga/calc?branch=master)

A calculator built from scratch!

Utilizes the [shunting yard](https://en.wikipedia.org/wiki/Shunting-yard_algorithm) algorithm to parse the input into rpn, then parses that postfix notation to return a result.

0 comments on commit 649969e

Please sign in to comment.