This repository was archived by the owner on Oct 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 90
Support multi toolchain like stable, nightly? #215
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Do the checklist before filing an issue:
- Is this related to the
actions-rsActions?
If you think it's a problem related to Github Actions in general, use GitHub Community forum instead: https://github.community - You've read the Contributing section about feature requests: https://github.com/actions-rs/.github/blob/master/CONTRIBUTING.md#feature-requests
- Is this something you can debug and fix? Send a pull request! Bug fixes and documentation fixes are welcome.
Motivation
Like components, which can specify multi item split by ,, it should be better to also support multi toolchain.
In my scene, I often use cargo build in stable toolchain, and then use cargo +nighlty fmt in nightly toolchain, which need both toolchain installed.
Workflow example
- name: Install Rust Stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable, nightly
override: true
components: rustfmt```
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request