dyna3/.forgejo/setup-rust/action.yaml

10 lines
406 B
YAML
Raw Normal View History

# set up the Rust toolchain. based on David Tolnay's more general
# `rust-toolchain` action for GitHub
#
# https://github.com/dtolnay/rust-toolchain
#
runs:
using: "composite"
steps:
- run: curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail 'https://sh.rustup.rs' | sh -s -- -y --profile minimal
- run: echo $HOME/.cargo/bin >> $GITHUB_PATH