2021-10-09 07:15:41 +03:00
|
|
|
# Install Rust Toolchain
|
|
|
|
|
|
|
|
This GitHub Action installs a Rust toolchain using rustup. It is designed for
|
|
|
|
one-line concise usage.
|
|
|
|
|
|
|
|
## Example workflow
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
name: test suite
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
name: cargo test
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-04-25 04:30:51 +03:00
|
|
|
- uses: actions/checkout@v3
|
2021-10-09 07:15:41 +03:00
|
|
|
- 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 |
|
|
|
|
| ------------ | -----------------------------------------------------------------------------------------------------------------------------------|
|
2022-02-14 05:43:00 +02:00
|
|
|
| `toolchain` | Rustup toolchain specifier e.g. `stable`, `nightly`, `1.42.0`. **Important: the default is to match the @rev as described above.** |
|
|
|
|
| `target` | Additional target support to install e.g. `wasm32-unknown-unknown` |
|
|
|
|
| `components` | Comma-separated string of additional components to install e.g. `clippy, rustfmt` |
|
2021-10-09 07:15:41 +03:00
|
|
|
|
|
|
|
## License
|
|
|
|
|
|
|
|
The scripts and documentation in this project are released under the [MIT
|
|
|
|
License].
|
|
|
|
|
|
|
|
[MIT License]: LICENSE
|