Merge commit 'd803bfe2b1fe7f5e219e50ac20d6801a0a58ac75' as 'vendor/ruvector'

This commit is contained in:
ruv
2026-02-28 14:39:40 -05:00
7854 changed files with 3522914 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
name: thermorust CI
on:
push:
paths:
- "crates/thermorust/**"
- ".github/workflows/thermorust-ci.yml"
pull_request:
paths:
- "crates/thermorust/**"
- ".github/workflows/thermorust-ci.yml"
env:
CARGO_TERM_COLOR: always
RUSTFLAGS: "-D warnings"
jobs:
test:
name: Test (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
with:
components: clippy, rustfmt
- name: Cache cargo registry
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-thermorust-${{ hashFiles('crates/thermorust/Cargo.toml') }}
restore-keys: ${{ runner.os }}-cargo-thermorust-
- name: Check formatting
run: cargo fmt --package thermorust -- --check
- name: Clippy
run: cargo clippy --package thermorust --all-targets -- -D warnings
- name: Build
run: cargo build --package thermorust
- name: Run tests
run: cargo test --package thermorust
bench-check:
name: Benchmarks compile
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Check benchmarks compile
run: cargo bench --package thermorust --no-run