Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
README.md | D | 12-May-2024 | 529 | 19 | 13 | |
action.yml | D | 12-May-2024 | 241 | 13 | 10 | |
main.js | D | 12-May-2024 | 1.5 KiB | 39 | 19 |
README.md
1# install-rust 2 3A small github action to install `rustup` and a Rust toolchain. This is 4generally expressed inline, but it was repeated enough in this repository it 5seemed worthwhile to extract. 6 7Some gotchas: 8 9* Can't `--self-update` on Windows due to permission errors (a bug in Github 10 Actions) 11* `rustup` isn't installed on macOS (a bug in Github Actions) 12 13When the above are fixed we should delete this action and just use this inline: 14 15```yml 16- run: rustup update $toolchain && rustup default $toolchain 17 shell: bash 18``` 19