From 90cc3eebee4538669d06e9e6e37cffbc1fadbe84 Mon Sep 17 00:00:00 2001 From: jutty Date: Sat, 13 Dec 2025 18:18:02 -0300 Subject: [PATCH] Try to checkout code manually actions/checkout@v4 requires node, which is beyond me --- .forgejo/workflows/check.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index bd923df..ed81dd5 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -6,7 +6,10 @@ jobs: image: rust:slim steps: - name: checkout code - uses: actions/checkout@v4 + run: | + apt install git + git clone https://codeberg.org/jutty/en + cd en - name: formatting run: cargo fmt -- --check - name: lints