Skip to content

Commit

Permalink
Travis-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
blang committed Jan 31, 2017
1 parent 4e07db9 commit 41721d0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: go
matrix:
include:
- go: 1.4.3
- go: 1.5.4
- go: 1.6.3
- go: 1.7
- go: tip
allow_failures:
- go: tip
install:
- go get golang.org/x/tools/cmd/cover
- go get github.com/mattn/goveralls
script:
- echo "Test and track coverage" ; $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
- echo "Check if gofmt'd" ; diff -u <(echo -n) <(gofmt -d -s .)
env:
global:
secure: b0jLb8iU21GMhuR6bM0c32LdmCJqUaR6g7y6xUZde6J80cMZh0pSqKF1h6D8u/a9WsaKCXz5lgEeFnxKBDcvlDcjCJJWqsExOr2hBWWssvFGbn0mp0hDKVlg0V3txp/+xm0bix/o9I0rTzqEk2wBVJAyfYyOSqijKZr0FkVOcbrdcw3Bk8A7eZmWXvQPdGfm5sXhEfgV6n3PirPsF3Emw6R0mdcTPqWBpiUvy6zfdCuk3eldw/6QLdaMZuZvegTOiq3w18LB2H9d72VY09ZhvSyQOBHCm8EHOEu21m6g311wsoiNKI1b7/m0NovAmmlddpijRgaiwQ53L535IU4rX5jCi7P8ZoJVPkkSdY3H88ljad5syWaj/pradJcb9j119Zzg6EVyDff0i02D4S716Vb+XSdcDWmlM/YORfA7WurLjWRmd6dPuALLDFdqBjVF49sHB0ZFYHDbcprsl+1jLvIXZQKtCH22xCG9AdCS/5g0QL4tkXnIxw5LT6ZMBZN8occjFBB1Dgy75/Fhlue0TgrIrxzLo/hzLgu0pMYEKu/GS8B31Cis7WjLHoaSb7FVXTfmHElSAhax/EgfYtk5g2tKdnssH0j7HQBcuKPpZOP8UXcB0oDzQ4dDu/IAu280bTWqf4ej2iOjhKlxdDKSq5lSQsXblM5NV6gQQW1Apms=
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
vfs for golang [![Build Status](https://drone.io/github.com/blang/vfs/status.png)](https://drone.io/github.com/blang/vfs/latest) [![GoDoc](https://godoc.org/github.com/blang/vfs?status.png)](https://godoc.org/github.com/blang/vfs) [![Coverage Status](https://img.shields.io/coveralls/blang/vfs.svg)](https://coveralls.io/r/blang/vfs?branch=master) [![Join the chat at https://gitter.im/blang/vfs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/blang/vfs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
vfs for golang [![Build Status](https://travis-ci.org/blang/vfs.svg?branch=master)](https://travis-ci.org/blang/vfs) [![GoDoc](https://godoc.org/github.com/blang/vfs?status.png)](https://godoc.org/github.com/blang/vfs) [![Coverage Status](https://img.shields.io/coveralls/blang/vfs.svg)](https://coveralls.io/r/blang/vfs?branch=master) [![Join the chat at https://gitter.im/blang/vfs](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/blang/vfs?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
======

vfs is library to support virtual filesystems. It provides basic abstractions of filesystems and implementations, like `OS` accessing the file system of the underlying OS and `memfs` a full filesystem in-memory.
Expand Down Expand Up @@ -93,4 +93,4 @@ Feel free to make a pull request. For bigger changes create a issue first to dis
License
-----

See [LICENSE](LICENSE) file.
See [LICENSE](LICENSE) file.

0 comments on commit 41721d0

Please sign in to comment.