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