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