3
0
Fork 0
mirror of https://github.com/dtolnay/rust-toolchain.git synced 2024-11-22 00:39:31 +01:00
rust-toolchain/action.yml

20 lines
568 B
YAML
Raw Normal View History

name: rustup
author: David Tolnay
description: Install the Rust toolchain
inputs:
toolchain:
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
required: true
runs:
using: composite
steps:
- name: rustup toolchain install ${{inputs.toolchain}}
run: rustup toolchain install ${{inputs.toolchain}} --profile minimal --no-self-update
shell: bash
- run: rustup default ${{inputs.toolchain}}
shell: bash
2021-10-09 05:01:43 +02:00
- run: rustc --version
shell: bash