From ba206f922e49659c0d5413bbd66df4d2ae1e4819 Mon Sep 17 00:00:00 2001 From: Philipp Mandler Date: Fri, 10 Jan 2025 02:30:23 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci:=20Remove=20caches=20to=20spe?= =?UTF-8?q?ed=20up=20build?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit seems to be buggy?! --- .github/workflows/lint.yml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 994a8cd5..47d71032 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -26,28 +26,8 @@ jobs: - name: Initialize nix environment run: nix develop . - - name: Setup backend pypackages cache - uses: actions/cache@v3 - with: - path: | - backend/.venv/ - key: ${{ runner.os }}-${{ runner.arch }}-pypackages-${{ hashFiles('backend/uv.lock', 'proto/transcribee_proto/*.py') }} - - - name: Setup worker pypackages cache - uses: actions/cache@v3 - with: - path: | - worker/.venv/ - key: ${{ runner.os }}-${{ runner.arch }}-pypackages-${{ hashFiles('worker/uv.lock', 'proto/transcribee_proto/*.py') }} - - name: install dependencies run: nix develop --command ./packaging/install_dependencies.sh - - name: cache pre-commit env - uses: actions/cache@v3 - with: - path: ~/.cache/pre-commit - key: ${{ runner.os }}-${{ runner.arch }}-${{ hashFiles('.pre-commit-config.yaml') }} - - name: run pre-commit run: nix develop --command pre-commit run --show-diff-on-failure --color=always --all-files