From 9a52b3aa927eb5a94a91f69e428db99485f276ea Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Tue, 3 Feb 2026 09:48:23 +0000 Subject: [PATCH] fix: Install Rust via rustup in CI --- .gitea/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0c748bb..5e42627 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -13,5 +13,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 - - name: Verify Rust - run: cargo --version + - name: Install Rust + run: | + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y + . "$HOME/.cargo/env" + cargo --version