Compare commits
No commits in common. "032aa3540b664388bf868399587ebaa27c4a6959" and "b1eb4be4d030da9e9f5ff66556ae4cf174d06b17" have entirely different histories.
032aa3540b
...
b1eb4be4d0
1 changed files with 1 additions and 21 deletions
|
@ -13,7 +13,6 @@ jobs:
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
|
||||||
components: rustfmt
|
components: rustfmt
|
||||||
- name: Check Rust formatting
|
- name: Check Rust formatting
|
||||||
run: cargo fmt --all -- --check
|
run: cargo fmt --all -- --check
|
||||||
|
@ -27,7 +26,6 @@ jobs:
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
|
||||||
components: clippy
|
components: clippy
|
||||||
- name: Run Clippy
|
- name: Run Clippy
|
||||||
run: cargo clippy -- -D warnings
|
run: cargo clippy -- -D warnings
|
||||||
|
@ -40,8 +38,6 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
|
||||||
toolchain: stable
|
|
||||||
- name: Check for Rust compilation errors
|
- name: Check for Rust compilation errors
|
||||||
run: cargo check
|
run: cargo check
|
||||||
|
|
||||||
|
@ -53,26 +49,10 @@ jobs:
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Set up Rust
|
- name: Set up Rust
|
||||||
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
uses: https://github.com/actions-rust-lang/setup-rust-toolchain@v1
|
||||||
with:
|
- name: Set up Python
|
||||||
toolchain: stable
|
|
||||||
- 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
|
|
||||||
run: pip install -r requirements.txt
|
run: pip install -r requirements.txt
|
||||||
- name: Build Rust code
|
- name: Build Rust code
|
||||||
run: maturin develop
|
run: maturin develop
|
||||||
|
|
||||||
test-rust:
|
|
||||||
name: Test Rust
|
|
||||||
runs-on: docker
|
|
||||||
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
|
|
||||||
- name: Run Rust tests
|
|
||||||
run: cargo test
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue