From 3949e75de5b8f91b5af941d65cb9f3409b528581 Mon Sep 17 00:00:00 2001 From: cswimr Date: Thu, 10 Oct 2024 15:47:20 -0400 Subject: [PATCH] install the correct version of python before running actions --- .forgejo/workflows/actions.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.forgejo/workflows/actions.yaml b/.forgejo/workflows/actions.yaml index 3434f4c..21ce79d 100644 --- a/.forgejo/workflows/actions.yaml +++ b/.forgejo/workflows/actions.yaml @@ -14,6 +14,9 @@ jobs: with: fetch-depth: 0 + - name: Install python + run: uv python install 3.11 + - name: Install dependencies run: uv sync --no-dev @@ -50,6 +53,9 @@ jobs: with: fetch-depth: 0 + - name: Install python + run: uv python install 3.11 + - name: Install dependencies run: uv sync @@ -70,6 +76,9 @@ jobs: with: fetch-depth: 0 + - name: Install python + run: uv python install 3.11 + - name: Install dependencies run: uv sync --no-dev --extra=documentation