Browse Source

👷 Use uv cache on GitHub Actions (#1366)

pull/13907/head
Sebastián Ramírez 10 months ago
committed by GitHub
parent
commit
911223516c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/workflows/generate-client.yml
  2. 1
      .github/workflows/lint-backend.yml
  3. 1
      .github/workflows/test-backend.yml

1
.github/workflows/generate-client.yml

@ -26,6 +26,7 @@ jobs:
uses: astral-sh/setup-uv@v2
with:
version: "0.4.15"
enable-cache: true
- name: Install dependencies
run: npm ci
working-directory: frontend

1
.github/workflows/lint-backend.yml

@ -23,5 +23,6 @@ jobs:
uses: astral-sh/setup-uv@v2
with:
version: "0.4.15"
enable-cache: true
- run: uv run bash scripts/lint.sh
working-directory: backend

1
.github/workflows/test-backend.yml

@ -23,6 +23,7 @@ jobs:
uses: astral-sh/setup-uv@v2
with:
version: "0.4.15"
enable-cache: true
- run: docker compose down -v --remove-orphans
- run: docker compose up -d db mailcatcher
- name: Migrate DB

Loading…
Cancel
Save