Compare commits

..

No commits in common. "f8a923293b70a1a07ce13473edca67f95d315f2b" and "0ef73312767c9c1baa87710137c7e43e0b7b31d8" have entirely different histories.

View file

@ -11,8 +11,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Rust
uses: https://github.com/dtolnay/rust-toolchain@stable
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: false
components: rustfmt
- name: Check Rust formatting
run: cargo fmt --all -- --check
@ -51,14 +53,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python toolchain
uses: https://github.com/actions/setup-python@v5
uses: actions/setup-python@v5
with:
python-version: "3.13"
cache: pip
python-version: 3.13.2
- name: Set up Python environment
run: pip install -r requirements.txt
- name: Set up Rust
uses: https://github.com/dtolnay/rust-toolchain@stable
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: stable
override: false
- name: Build Rust code
run: maturin develop