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