Merge pull request #236 from kargakis/travis-update

Build and test CI improvements
This commit is contained in:
Michail Kargakis 2020-03-28 14:30:46 +01:00 committed by GitHub
commit f1155579b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 6 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
sftpfs/file1
sftpfs/test/

View File

@ -2,8 +2,8 @@ sudo: false
language: go
go:
- 1.9
- "1.10"
- "1.13"
- "1.14"
- tip
os:
@ -16,6 +16,6 @@ matrix:
fast_finish: true
script:
- go build
- go test -race -v ./...
- go build -v ./...
- go test -count=1 -cover -race -v ./...

View File

@ -10,6 +10,6 @@ build_script:
go get -v github.com/spf13/afero/...
go build github.com/spf13/afero
go build -v github.com/spf13/afero/...
test_script:
- cmd: go test -race -v github.com/spf13/afero/...
- cmd: go test -count=1 -cover -race -v github.com/spf13/afero/...

1
go.mod
View File

@ -2,6 +2,7 @@ module github.com/spf13/afero
require (
github.com/pkg/sftp v1.10.1
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586
golang.org/x/text v0.3.0
)