From d95b4a8fb5bd1b13bbc01d0ae7385e997061113a Mon Sep 17 00:00:00 2001 From: icsboyx Date: Thu, 8 Jan 2026 14:32:37 +0100 Subject: [PATCH] Add Rust CI workflow for build and test processes --- .gitea/workflows/{test.yaml => build.yaml} | 5 +++++ 1 file changed, 5 insertions(+) rename .gitea/workflows/{test.yaml => build.yaml} (85%) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/build.yaml similarity index 85% rename from .gitea/workflows/test.yaml rename to .gitea/workflows/build.yaml index 2c9b454..6312d68 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/build.yaml @@ -25,6 +25,11 @@ jobs: target key: cargo-${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }} + - name: Install Rust components + run: | + rustup component add rustfmt + rustup component add clippy + - name: Format (check) run: cargo fmt --all -- --check