Open
Description
Description:
Cache go install
-ed binaries (optionally I suppose) along with go mod dependencies. Store $GOBIN
folder with all installed during workflow execution binaries on post step (cache save).
Justification:
In my scenario, I use tparse
tool to prettify tests results. I can imagine other cases such as code generator tools. Basically pre-run/post-run scripts. For now, I turned off the cache option of this action and wrote my own using action/cache
, but it adds significant complexity to keep it around multiple workflows the same way.
Are you willing to submit a PR?
Sure, as soon as the feature is approved.