Skip to content

fix(embed): panic if number of embeddings and node are equal #175

fix(embed): panic if number of embeddings and node are equal

fix(embed): panic if number of embeddings and node are equal #175

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
lint-and-test:
name: Lint & Test
runs-on: ubuntu-latest
env:
RUST_LOG: DEBUG
RUST_BACKTRACE: 1
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy,rustfmt
- uses: r7kamura/rust-problem-matchers@v1
- name: "Clippy"
run: cargo clippy
- name: "Rustfmt"
run: cargo fmt --all --check
- name: "Test"
run: cargo test --verbose --workspace --all-features