Skip to content

Commit

Permalink
Merge pull request #59 from 0xPlaygrounds/feat(embeddings)/derive-macro
Browse files Browse the repository at this point in the history
Feat(embeddings): Embeddable derive macro
  • Loading branch information
marieaurore123 authored Oct 18, 2024
2 parents ef00b38 + 485ad3b commit 4039cf6
Show file tree
Hide file tree
Showing 29 changed files with 1,522 additions and 488 deletions.
25 changes: 24 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ jobs:

- name: Run clippy action
uses: clechasseur/rs-clippy-check@v3
with:
args: --all-features

test:
name: stable / test
Expand All @@ -79,4 +81,25 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: nextest
args: run --all-features
args: run --all-features

doc:
name: stable / doc
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust stable
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
components: rust-docs

# Required to compile rig-lancedb
- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Run cargo doc
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings
Loading

0 comments on commit 4039cf6

Please sign in to comment.