830e3d1f64
you can proxy and/or load balance the SFTP/SCP service without losing the information about the client's address.
24 lines
No EOL
295 B
YAML
24 lines
No EOL
295 B
YAML
language: go
|
|
|
|
os:
|
|
- linux
|
|
- osx
|
|
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.x
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
before_script:
|
|
- sftpgo initprovider
|
|
|
|
install:
|
|
- go get -v -t ./...
|
|
|
|
script:
|
|
- go test -v ./... -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash) |