Move action venv creation after necessary modules
Some checks failed
CI / Formatting (push) Successful in 39s
CI / Clippy (push) Failing after 54s
CI / Build (push) Failing after 14s
CI / Test Rust (push) Failing after 1m6s

This commit is contained in:
Michael Bradley 2025-02-23 04:13:51 -05:00
parent 28dbb46ad1
commit a1579e9036
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -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