mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
fe13fff9fa
Bumps [github.com/IBM/keyprotect-go-client](https://github.com/IBM/keyprotect-go-client) from 0.8.1 to 0.9.0. - [Release notes](https://github.com/IBM/keyprotect-go-client/releases) - [Commits](https://github.com/IBM/keyprotect-go-client/compare/v0.8.1...v0.9.0) --- updated-dependencies: - dependency-name: github.com/IBM/keyprotect-go-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
525 B
YAML
27 lines
525 B
YAML
language: go
|
|
dist: xenial
|
|
|
|
go:
|
|
- 1.17.x
|
|
- 1.18.x
|
|
- 1.19.x
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
before_script:
|
|
- GO111MODULE=off go get -u github.com/haya14busa/goverage
|
|
|
|
install:
|
|
- go build ./...
|
|
|
|
script:
|
|
- $GOPATH/bin/goverage -v -race -coverprofile=cover.out $(go list ./... | grep -v '/vendor|/scripts')
|
|
- go tool cover -func=cover.out
|
|
- go tool cover -html=cover.out -o=cover.html
|
|
|
|
# FIXME: these scripts don't exist in this repo
|
|
# after_success:
|
|
# - ./scripts/calculateCoverage.sh
|
|
# - ./scripts/publishCoverage.sh
|