Import howett.net/plist by its correct name

Also bumping the version to one with a go.mod.
This commit is contained in:
Filippo Valsorda
2019-06-02 12:55:44 +01:00
parent e9f8fbcdf4
commit 72ec55f07f
29 changed files with 22 additions and 6 deletions

39
vendor/howett.net/plist/.gitlab-ci.yml generated vendored Normal file
View File

@@ -0,0 +1,39 @@
image: golang:alpine
stages:
- test
variables:
GO_PACKAGE: "howett.net/plist"
before_script:
- "mkdir -p $(dirname $GOPATH/src/$GO_PACKAGE)"
- "ln -s $(pwd) $GOPATH/src/$GO_PACKAGE"
- "cd $GOPATH/src/$GO_PACKAGE"
.template:go-test: &template-go-test
stage: test
script:
- go test
go-test-cover:latest:
stage: test
script:
- go test -v -cover
coverage: '/^coverage: \d+\.\d+/'
go-test-appengine:latest:
stage: test
script:
- go test -tags appengine
go-test:1.6:
<<: *template-go-test
image: golang:1.6-alpine
go-test:1.4:
<<: *template-go-test
image: golang:1.4-alpine
go-test:1.2:
<<: *template-go-test
image: golang:1.2