Skip to content

Commit

Permalink
Merge branch 'main' into feat/agentic-chains
Browse files Browse the repository at this point in the history
cvauclair committed Dec 5, 2024
2 parents c2c1996 + 412ea16 commit 0fd59d6
Showing 43 changed files with 2,707 additions and 560 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -106,3 +106,22 @@ jobs:
run: cargo doc --no-deps --all-features
env:
RUSTDOCFLAGS: -D warnings

publish-check:
name: stable / publish dry-run
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 publish --dry-run
run: find . | grep -v "target" | grep "\./.*/Cargo\.toml" | xargs -n 1 sh -c 'cargo publish --manifest-path $0 --dry-run || exit 255'
Loading

0 comments on commit 0fd59d6

Please sign in to comment.