diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 74a65517..527a886a 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -48,6 +48,7 @@ jobs: uses: actions/checkout@v2 - name: Run Windows Unit Tests run: | + make all go test -v -race ./pkg/... bump_version_test: diff --git a/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.pb.go b/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.pb.go index 6204cf55..f76ff892 100644 --- a/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.pb.go +++ b/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.pb.go @@ -248,7 +248,7 @@ var xxx_messageInfo_StartServiceResponse proto.InternalMessageInfo type StopServiceRequest struct { // Service name (as listed in System\CCS\Services keys) Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` - // Forces stopping of services that has dependant services + // Forces stopping of services that has dependent services Force bool `protobuf:"varint,2,opt,name=force,proto3" json:"force,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` diff --git a/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.proto b/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.proto index 25e07807..d04923e6 100644 --- a/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.proto +++ b/vendor/github.com/kubernetes-csi/csi-proxy/client/api/system/v1alpha1/api.proto @@ -45,7 +45,7 @@ message StopServiceRequest { // Service name (as listed in System\CCS\Services keys) string name = 1; - // Forces stopping of services that has dependant services + // Forces stopping of services that has dependent services bool force = 2; }