Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,10 @@ jobs:
run: |
sudo apt update
sudo apt install -y protobuf-compiler
- name: Build
- name: Build lance-graph
run: cargo build --manifest-path crates/lance-graph/Cargo.toml
- name: Build lance-graph-python
run: cargo check --manifest-path crates/lance-graph-python/Cargo.toml
- name: Build tests
run: cargo test --manifest-path crates/lance-graph/Cargo.toml --no-run
- name: Run tests
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@ jobs:
run: |
sudo apt update
sudo apt install -y protobuf-compiler
- name: Clippy
- name: Clippy lance-graph
run: cargo clippy --manifest-path crates/lance-graph/Cargo.toml --all-targets -- -D warnings
- name: Clippy lance-graph-python
run: cargo clippy --manifest-path crates/lance-graph-python/Cargo.toml --all-targets -- -D warnings

typos:
name: Spell Check
Expand Down
121 changes: 121 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
members = [
"crates/lance-graph",
"crates/lance-graph-catalog",
"crates/lance-graph-benches",
]
exclude = [
"crates/lance-graph-python",
"crates/lance-graph-benches",
]
resolver = "2"
Loading