From 78a45b8db3fed893d52f74593b33f6d1ea9e7e1b Mon Sep 17 00:00:00 2001 From: jutty Date: Sat, 13 Dec 2025 18:37:30 -0300 Subject: [PATCH] Try cloning directly into the working directory --- .forgejo/workflows/check.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/check.yaml b/.forgejo/workflows/check.yaml index eb72507..085ef0a 100644 --- a/.forgejo/workflows/check.yaml +++ b/.forgejo/workflows/check.yaml @@ -8,13 +8,12 @@ jobs: - name: checkout code run: | apt --update -y install git - git clone https://codeberg.org/jutty/en - cd en - ls + pwd; ls -la + git clone https://codeberg.org/jutty/en . + ls -la - name: formatting run: | - pwd - ls + pwd; ls -la rustup component add rustfmt cargo fmt -- --check - name: lints