Update test to use setup-uv action and change workdir

---

For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/astral-sh/setup-uv?shareId=XXXX-XXXX-XXXX-XXXX).
This commit is contained in:
Daniel Valdivia 2025-05-21 19:20:21 -07:00
parent 0e0f4bfefa
commit dd9d89959c

View file

@ -42,9 +42,11 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install latest version - name: Install latest version
id: setup-uv id: setup-uv
uses: ./ uses: astral-sh/setup-uv@v6
with:
working-directory: backend
- run: uv sync - run: uv sync
working-directory: __tests__/fixtures/uv-project working-directory: backend
shell: bash shell: bash
- name: Check uv-path is set - name: Check uv-path is set
run: ${{ steps.setup-uv.outputs.uv-path }} --version run: ${{ steps.setup-uv.outputs.uv-path }} --version