Move build action rust setup code down to try out Python setup
This commit is contained in:
parent
9db6a303a7
commit
0ef7331276
1 changed files with 5 additions and 5 deletions
|
@ -52,17 +52,17 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
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
|
- name: Set up Python toolchain
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
python-version: 3.13.2
|
python-version: 3.13.2
|
||||||
- name: Set up Python environment
|
- name: Set up Python environment
|
||||||
run: pip install -r requirements.txt
|
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
|
- name: Build Rust code
|
||||||
run: maturin develop
|
run: maturin develop
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue