Go to file
2021-10-09 06:04:03 +01:00
scripts Add revs update script 2021-10-09 05:20:16 +01:00
action.yml Clean up bash variable naming 2021-10-09 06:04:03 +01:00
LICENSE Add MIT license 2021-10-09 02:41:20 +01:00
README.md Add readme 2021-10-09 05:15:41 +01:00

Install Rust Toolchain

This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage.

Example workflow

name: test suite
on: [push, pull_request]

jobs:
  test:
    name: cargo test
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - uses: dtolnay/rust-toolchain@stable
      - run: cargo test --all-features

The selection of Rust toolchain is made based on the particular @rev of this Action being requested. For example "dtolnay/rust-toolchain@nightly" pulls in the nightly Rust toolchain, while "dtolnay/rust-toolchain@1.42.0" pulls in 1.42.0.

Inputs

All inputs are optional.

Name Description
toolchain Rustup toolchain specifier, ex. stable, nightly, 1.42.0. Important: the default is to match the @rev as described above.
target Additional target support to install, ex. wasm32-unknown-unknown
components Comma-separated string of additional components to install, ex. clippy, rustfmt

License

The scripts and documentation in this project are released under the MIT License.