From 760269c07a86bfaaf65a2526bf846b972faa58da Mon Sep 17 00:00:00 2001 From: Artem Kashaev Date: Thu, 27 Nov 2025 14:48:13 +0500 Subject: [PATCH] fix: update test workflow to include fetch-depth for checkout and remove caching step --- .gitea/workflows/test.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 5de1824..025296a 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -24,6 +24,8 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Set up Python uses: actions/setup-python@v5 @@ -33,16 +35,6 @@ jobs: - name: Install uv run: pip install uv - - name: Cache uv dependencies - uses: actions/cache@v4 - with: - path: | - .venv - ~/.cache/uv - key: ${{ runner.os }}-uv-${{ hashFiles('uv.lock') }} - restore-keys: | - ${{ runner.os }}-uv- - - name: Sync dependencies run: uv sync --dev