22 lines
249 B
YAML
22 lines
249 B
YAML
language: go
|
|
|
|
env: GO111MODULE=on
|
|
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.x
|
|
|
|
git:
|
|
depth: 1
|
|
|
|
before_script:
|
|
- cd dyndns
|
|
|
|
script:
|
|
- go test -v ./...
|
|
- go build ./...
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|
|
on_failure: always
|