valentinus 1.3.0

A thread-safe vector database for model inference inside LMDB.
Documentation
name: build

on:
  push:
    paths-ignore:
      - 'examples/**'
      - 'README.md'
    branches: [ "main", "stable" ]
  pull_request:
    branches: [ "main", "stable" ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v4
    - name: Install dependencies
      run: |
        rustup toolchain install nightly
    - name: build and clippy
      run: RUSTFLAGS="-Z threads=4" cargo +nightly build --future-incompat-report && cargo clippy