mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2025-06-07 19:26:37 +00:00
Initial version
This commit is contained in:
commit
644dd49b85
12 changed files with 5315 additions and 0 deletions
34
README.md
Normal file
34
README.md
Normal file
|
@ -0,0 +1,34 @@
|
|||
# `rustup toolchain` Action
|
||||
|
||||
This GitHub Action installs [Rust toolchain](https://github.com/rust-lang/rustup.rs#toolchain-specification).
|
||||
|
||||
Optionally it can set installed toolchain as a default and as an override for current directory.
|
||||
|
||||
## Example workflow
|
||||
|
||||
```yaml
|
||||
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](https://github.com/rust-lang/rustup.rs#toolchain-specification) for details.\
|
||||
Examples: `stable`, `nightly`, `nightly-2019-04-20`
|
||||
* `default`: Set installed toolchain as default (executes `rustup toolchain default {TOOLCHAIN}`)
|
||||
* `override`: Set installed toolchain as an override for current directory
|
||||
|
||||
Note: `toolchain` input is required.
|
Loading…
Add table
Add a link
Reference in a new issue