From ef644e24e8698409539326e99f27f6d2e9a557a9 Mon Sep 17 00:00:00 2001 From: jutty Date: Sat, 13 Dec 2025 18:44:08 -0300 Subject: [PATCH] Install dependencies in a separate step --- .forgejo/workflows/check.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index 7d47546..488b5e7 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -11,6 +11,8 @@ jobs: git clone https://codeberg.org/jutty/en . - name: setup toolchain run: rustup component add rustfmt clippy + - name: install dependencies + run: cargo install - name: formatting run: cargo fmt -- --check - name: lints