-
-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add cargo-make to supported tools #146
Conversation
Error in the windows build (attempting to fix by adding:
|
Re-ran |
on:
push:
branches:
- main
name: CI
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: install cargo make
uses: taiki-e/install-action@370d6b7a85900451456cc58b71ebdbe965d20d8e
with:
tool: cargo-make
- name: cargo make test
run: cargo make test Succeeds:
|
I didn't know that |
I was pretty surprised by binstall being that slow too! |
Thanks! Published in 2.12.0. |
Thanks - confirmed that it works in https://github.com/joshka/test-install-cargo-make/actions/runs/5373770445/jobs/9748477866 - name: checkout
uses: actions/checkout@v3
- name: install cargo make
uses: taiki-e/install-action@cargo-make
- name: cargo make run
run: cargo make run
|
This cuts between 2-4 minutes from CI time over using
cargo-binstall
(depending on the platform).