mirror of
https://github.com/xHyroM/zed-discord-presence.git
synced 2024-11-10 00:18:06 +01:00
14 lines
303 B
YAML
14 lines
303 B
YAML
|
name: Install rust
|
||
|
description: Installs the latest version of rust, rustfmt & clippy
|
||
|
|
||
|
runs:
|
||
|
using: composite
|
||
|
steps:
|
||
|
- name: install rust
|
||
|
uses: dtolnay/rust-toolchain@stable
|
||
|
with:
|
||
|
components: rustfmt, clippy
|
||
|
|
||
|
- name: cache dependencies
|
||
|
uses: Swatinem/rust-cache@v2
|