reproio / columnify

Make record oriented data to columnar format.
Apache License 2.0
38 stars 6 forks source link

use `go install` instead of `go get -u` #75

Closed takaishi closed 3 years ago

takaishi commented 3 years ago

I faced failure to install golangci-lint with go get -u by error of dependency resolving. It's convenient to use go install to install tools instead of go get -u because go install don't update go.mod. And, I update Installation section of README to use go install to install columnify.

codecov[bot] commented 3 years ago

Codecov Report

Merging #75 (24c4327) into master (5f9b350) will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #75   +/-   ##
=======================================
  Coverage   81.23%   81.23%           
=======================================
  Files          15       15           
  Lines         453      453           
=======================================
  Hits          368      368           
  Misses         63       63           
  Partials       22       22           
Flag Coverage Δ
unittests 81.23% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.


Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 5f9b350...24c4327. Read the comment docs.

takaishi commented 3 years ago

@okkez Could you review this PR?