Skip to content

Commit

Permalink
👷 ci: Remove caches to speed up build
Browse files Browse the repository at this point in the history
seems to be buggy?!
  • Loading branch information
phlmn committed Jan 10, 2025
1 parent 03181d9 commit d7d1911
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d7d1911

Please sign in to comment.