Try again to set up pip
Some checks failed
CI / Formatting (push) Successful in 39s
CI / Clippy (push) Failing after 54s
CI / Build (push) Failing after 47s
CI / Test Rust (push) Failing after 1m5s

This commit is contained in:
Michael Bradley 2025-02-23 03:47:43 -05:00
parent 35d0c0b4a2
commit 70484eac68
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -40,10 +40,11 @@ jobs:
uses: actions/setup-python@v5
with:
cache: pip
- name: Install pip
run: python3 -m ensurepip
- name: Set up Python environment
run: python3 -m pip install -r requirements.txt
run: |
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python3 get-pip.py
python3 -m pip install -r requirements.txt
- name: Set up Rust
uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Build Rust code
@ -57,5 +58,7 @@ jobs:
uses: actions/checkout@v4
- name: Set up Rust
uses: https://github.com/dtolnay/rust-toolchain@stable
- name: Set up Python toolchain
uses: actions/setup-python@v5
- name: Run Rust tests
run: cargo test