Skip to content

Commit 41721d0

Browse files
committed
Travis-ci
1 parent 4e07db9 commit 41721d0

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: go
2+
matrix:
3+
include:
4+
- go: 1.4.3
5+
- go: 1.5.4
6+
- go: 1.6.3
7+
- go: 1.7
8+
- go: tip
9+
allow_failures:
10+
- go: tip
11+
install:
12+
- go get golang.org/x/tools/cmd/cover
13+
- go get github.com/mattn/goveralls
14+
script:
15+
- echo "Test and track coverage" ; $HOME/gopath/bin/goveralls -service=travis-ci -repotoken $COVERALLS_TOKEN
16+
- echo "Check if gofmt'd" ; diff -u <(echo -n) <(gofmt -d -s .)
17+
env:
18+
global:
19+
secure: b0jLb8iU21GMhuR6bM0c32LdmCJqUaR6g7y6xUZde6J80cMZh0pSqKF1h6D8u/a9WsaKCXz5lgEeFnxKBDcvlDcjCJJWqsExOr2hBWWssvFGbn0mp0hDKVlg0V3txp/+xm0bix/o9I0rTzqEk2wBVJAyfYyOSqijKZr0FkVOcbrdcw3Bk8A7eZmWXvQPdGfm5sXhEfgV6n3PirPsF3Emw6R0mdcTPqWBpiUvy6zfdCuk3eldw/6QLdaMZuZvegTOiq3w18LB2H9d72VY09ZhvSyQOBHCm8EHOEu21m6g311wsoiNKI1b7/m0NovAmmlddpijRgaiwQ53L535IU4rX5jCi7P8ZoJVPkkSdY3H88ljad5syWaj/pradJcb9j119Zzg6EVyDff0i02D4S716Vb+XSdcDWmlM/YORfA7WurLjWRmd6dPuALLDFdqBjVF49sHB0ZFYHDbcprsl+1jLvIXZQKtCH22xCG9AdCS/5g0QL4tkXnIxw5LT6ZMBZN8occjFBB1Dgy75/Fhlue0TgrIrxzLo/hzLgu0pMYEKu/GS8B31Cis7WjLHoaSb7FVXTfmHElSAhax/EgfYtk5g2tKdnssH0j7HQBcuKPpZOP8UXcB0oDzQ4dDu/IAu280bTWqf4ej2iOjhKlxdDKSq5lSQsXblM5NV6gQQW1Apms=

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
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)
1+
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)
22
======
33

44
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.
@@ -93,4 +93,4 @@ Feel free to make a pull request. For bigger changes create a issue first to dis
9393
License
9494
-----
9595

96-
See [LICENSE](LICENSE) file.
96+
See [LICENSE](LICENSE) file.

0 commit comments

Comments
 (0)