From 61e902163c933c783b6ab5ed246ba123d24bd884 Mon Sep 17 00:00:00 2001 From: brb Date: Mon, 10 Jul 2023 19:16:16 +0200 Subject: [PATCH] updated workflow --- .gitea/workflows/pipeline.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index 12e3e4b..cbdcf6d 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -13,9 +13,9 @@ jobs: steps: - uses: actions/checkout@v3 - name: Set up Python 3.10 - uses: actions/setup-python@v3 - with: - python-version: "3.10" + run: | + virtualenv -p python3.10 venv + source venv/bin/activate - name: Install dependencies run: | python -m pip install --upgrade pip