From 6400518beb334f62fdaa4809aaae865731bca814 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillaume=20GRAB=C3=89?= Date: Mon, 8 Jun 2026 22:27:54 +0200 Subject: [PATCH] fix: rustup ci --- .gitea/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5b9014f..25eeed7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,6 +29,8 @@ jobs: steps: - name: Install system deps run: apt-get update && apt-get install -y --no-install-recommends git nodejs + - name: Install rustfmt + run: rustup component add rustfmt - uses: actions/checkout@v4 - run: cargo fmt --all -- --check @@ -39,6 +41,8 @@ jobs: steps: - name: Install system deps run: apt-get update && apt-get install -y --no-install-recommends protobuf-compiler libprotobuf-dev git ca-certificates nodejs + - name: Install clippy + run: rustup component add clippy - uses: actions/checkout@v4 - uses: Swatinem/rust-cache@v2 - run: cargo clippy --workspace -- -D warnings