From a1579e9036cd77a9d528b7e25f604cfa4f78e48d Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Sun, 23 Feb 2025 04:13:51 -0500 Subject: [PATCH] Move action venv creation after necessary modules --- .forgejo/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index c9d5ee4..78f420c 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -42,11 +42,11 @@ jobs: cache: pip - name: Set up Python environment run: | - python3 -m venv venv - source venv/bin/activate curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py - python3 -m pip install -r requirements.txt + python3 -m venv venv + source venv/bin/activate + pip install -r requirements.txt - name: Set up Rust uses: https://github.com/dtolnay/rust-toolchain@stable - name: Build Rust code