Skip to content

davidB/rust-cargo-make

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

rust-cargo-make action

Install cargo-make by downloading the executable (faster than cargo install cargo-make, seconds vs minutes).

Inputs

version

Optional version of cargo-make to install (eg. "0.22.2", "latest").

Example usage

- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
- uses: actions/checkout@v1
- name: Run tests
  run: cargo make ci-flow
- uses: dtolnay/rust-toolchain@stable
- uses: davidB/rust-cargo-make@v1
  with:
    version: '0.23.0'
- uses: actions/checkout@v1
- name: Run tests
  run: cargo make ci-flow

Alternatives