Browse Source

Merge pull request #2 from NickPresta/add-travis-config

Adding TravisCI configuration, badge, GoDoc badge.
Carl Jackson 12 years ago
parent
commit
70e2cd53d2
2 changed files with 13 additions and 5 deletions
  1. +11
    -0
      .travis.yml
  2. +2
    -5
      README.md

+ 11
- 0
.travis.yml View File

@ -0,0 +1,11 @@
language: go
go:
- 1.2
- tip
install:
- go list -f '{{range .Imports}}{{.}} {{end}}' ./... | xargs go get -v
- go list -f '{{range .TestImports}}{{.}} {{end}}' ./... | xargs go get -v
- go get code.google.com/p/go.tools/cmd/cover
- go build -v ./...
script:
- go test -v -cover ./...

+ 2
- 5
README.md View File

@ -1,10 +1,7 @@
Goji
Goji [![GoDoc](https://godoc.org/github.com/zenazn/goji?status.png)](https://godoc.org/github.com/zenazn/goji) [![Build Status](https://travis-ci.org/zenazn/goji.svg)](https://travis-ci.org/zenazn/goji)
====
Goji is a minimalistic web framework inspired by Sinatra. [Godoc][doc].
[doc]: http://godoc.org/github.com/zenazn/goji
Goji is a minimalistic web framework inspired by Sinatra.
Example
-------


Loading…
Cancel
Save