mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-11-02 22:02:01 +02:00
* commit-hash: rustc's source revision long commit hash * abbrev-hash: rustc's source revision short commit hash * commit-date: rustc's source revision commit date * release: rustc's version The earliest compatible rustc release is 1.16.0 (2017-03-10). Earlier versions did not implement `--verbose --version`s. |
||
|---|---|---|
| .github | ||
| scripts | ||
| action.yml | ||
| LICENSE | ||
| README.md | ||
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@v3
- 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 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 |
License
The scripts and documentation in this project are released under the MIT License.