Move build action rust setup code down to try out Python setup
Some checks failed
CI / Formatting (push) Failing after 39s
CI / Build (push) Failing after 8s

This commit is contained in:
Michael Bradley 2025-02-23 03:21:46 -05:00
parent 9db6a303a7
commit 0ef7331276
Signed by: MichaelBradley
SSH key fingerprint: SHA256:cj/YZ5VT+QOKncqSkx+ibKTIn0Obg7OIzwzl9BL8EO8

View file

@ -52,17 +52,17 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: false
- name: Set up Python toolchain
uses: actions/setup-python@v5
with:
python-version: 3.13.2
- name: Set up Python environment
run: pip install -r requirements.txt
- name: Set up Rust
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: false
- name: Build Rust code
run: maturin develop