Quick installation by GitHub Actions already available / planned? #138
-
Hello and thank you for this software! I would like to enhance the CI of one of my Rust projects by adding this tool to that project's CI and now I was wondering whether there might be already a GitHub Action existing to quickly install the binary. So far, I worked with https://github.com/taiki-e/install-action which will install the specified Rust binary using caches such that a notable speed-up of the CI can be achieved. The limitation of this Action is that the Rust binary to be installed first of all needs to be hard-coded into the Action's definition, so it is not possible to install an arbitrary tool from crates.io. As far as I can see, it does not support I am looking forward to your feedback! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
I found the following Action which solves this question for me: https://github.com/baptiste0928/cargo-install. - uses: baptiste0928/cargo-install@v2.1.0
with:
crate: cargo-mutants |
Beta Was this translation helpful? Give feedback.
-
That's great. I was just thinking about the same thing. Maybe we could get a single action that installs and runs cargo-mutants, and potentially installs a binary to make it a bit faster... |
Beta Was this translation helpful? Give feedback.
I found the following Action which solves this question for me: https://github.com/baptiste0928/cargo-install.