From f71b7cd14620d448caa7c8748e3f17860309d27e Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sat, 31 Jan 2026 22:14:54 +0000 Subject: [PATCH] Debug CI file listing --- .gitea/workflows/ci.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index edb08a4..4408bae 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -5,12 +5,13 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Install pytest - run: pip3 install pytest - - - name: Check pytest - run: pytest --version - - - name: List directories + - name: Check Python run: | - ls -d */ 2>/dev/null || echo "No subdirectories" \ No newline at end of file + python3 --version + which python3 + + - name: List files + run: | + ls -la + echo "---" + ls -d */ \ No newline at end of file