Skip to content

Commit

Permalink
Merge pull request #77 from XuJiandong/lazy-reader
Browse files Browse the repository at this point in the history
feat: Add Rust lazy reader
  • Loading branch information
yangby-cryptape committed Apr 3, 2024
2 parents afdda32 + 785a309 commit 9190849
Show file tree
Hide file tree
Showing 37 changed files with 7,424 additions and 28 deletions.
13 changes: 11 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ci:
@set -eu; \
export RUSTFLAGS='-D warnings'; \
make fmt clippy; \
make ci-lazy-reader; \
make cargo-test ci-examples ci-crates; \
echo "Success!"

Expand Down Expand Up @@ -35,7 +36,6 @@ clippy:
@set -eu; \
for dir in ${RUST_PROJS}; do \
cd "$${dir}"; \
cargo clean; \
cargo clippy --all --all-targets --all-features; \
cd - > /dev/null; \
done
Expand Down Expand Up @@ -72,4 +72,13 @@ ci-crates:
ci-examples:
@set -eu; \
cd examples/ci-tests; \
make clean test
make clean test; \
cd - > /dev/null; \

ci-lazy-reader:
@set -eu; \
cd examples/lazy-reader-tests; \
make test; \
cd - > /dev/null; \


Loading

0 comments on commit 9190849

Please sign in to comment.