diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index 8700416..13aaa5e 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -16,8 +16,13 @@ jobs: with: fetch-depth: 0 + - name: Install the latest version of uv + uses: astral-sh/setup-uv@v4 + with: + version: "latest" + - name: Install - run: .venv/bin/uv sync + run: uv sync - name: Run tests (API call) run: pytest -s tests/basic.py