From 0ca766d9371d967a53dc09447c1fa9556206e62e Mon Sep 17 00:00:00 2001 From: SolidStateDrive Date: Sat, 1 Feb 2025 16:21:11 +0100 Subject: [PATCH] feat(ci): setup rust env --- .github/workflows/build.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 558783b..935815f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,9 @@ jobs: steps: - name: Checkout Repository uses: actions/checkout@v4 + + - name: Setup Rust + run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -q -y - name: Build run: cargo build --verbose