mirror of
https://github.com/actions-rs/toolchain.git
synced 2024-11-13 04:56:32 +02:00
953 B
953 B
rustup toolchain
Action
This GitHub Action installs Rust toolchain.
Optionally it can set installed toolchain as a default and as an override for current directory.
Example workflow
on: [push]
name: build
jobs:
check:
name: Rust project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Install nightly
uses: actions-rs/toolchain@1
with:
toolchain: nightly
override: true
Inputs
toolchain
: Toolchain name, see rustup page for details.
Examples:stable
,nightly
,nightly-2019-04-20
default
: Set installed toolchain as default (executesrustup toolchain default {TOOLCHAIN}
)override
: Set installed toolchain as an override for current directory
Note: toolchain
input is required.