mirror of
https://github.com/actions-rs/toolchain.git
synced 2024-11-13 04:56:32 +02:00
Mirror of https://github.com/actions-rs/toolchain
d021bc1259
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 12.7.5 to 12.7.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> |
||
---|---|---|
.github | ||
__tests__ | ||
dist | ||
src | ||
.editorconfig | ||
.gitignore | ||
action.yml | ||
jest.config.js | ||
LICENSE | ||
package-lock.json | ||
package.json | ||
README.md | ||
tsconfig.json |
rust-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@v1
with:
toolchain: nightly
override: true
# `cargo check` command here will use installed `nightly`
# as it set as an "override" for current directory
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
Inputs
toolchain
(required): Toolchain name, see rustup page for details.
Examples:stable
,nightly
,nightly-2019-04-20
target
: Additionally install specific target for this toolchain (ex.x86_64-apple-darwin
)default
: Set installed toolchain as default (executesrustup toolchain default {toolchain}
)override
: Set installed toolchain as an override for current directory
Components
If you are going to install clippy
, rustfmt
or any other rustup component,
it might not be available in latest nightly
build;
check out the actions-rs/components-nightly
Action,
which makes this process much easier.
Notes
As rustup
is not installed by default for macOS environments
at the moment (2019-09-13), this Action will try its best to install it before any other operations.