mirror of
https://github.com/containers/skopeo.git
synced 2025-09-12 13:08:02 +00:00
Add a simple travis yaml
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
19
.travis.yml
Normal file
19
.travis.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
language: go
|
||||
sudo: false
|
||||
notifications:
|
||||
email: false
|
||||
env:
|
||||
global:
|
||||
- GO15VENDOREXPERIMENT=1
|
||||
go:
|
||||
- 1.5
|
||||
- tip
|
||||
install:
|
||||
- go get github.com/golang/lint/golint
|
||||
script:
|
||||
- go vet .
|
||||
- test -z "$(golint . | tee /dev/stderr)"
|
||||
- test -z "$(gofmt -s -l . | tee /dev/stderr)"
|
||||
- go build -o skopeo .
|
||||
- go test -v .
|
Reference in New Issue
Block a user