Skip to content

Commit

Permalink
Add ffi, json compilation check (#2671)
Browse files Browse the repository at this point in the history
* Add ffi compilation check

* Add compilation check for json
  • Loading branch information
viirya committed Sep 6, 2022
1 parent 4e65952 commit d73d78f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/arrow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,9 @@ jobs:
- name: Check compilation --no-default-features --all-targets --features test_utils
run: |
cargo check -p arrow --no-default-features --all-targets --features test_utils
- name: Check compilation --no-default-features --all-targets --features --ffi
run: |
cargo check -p arrow --no-default-features --all-targets --features ffi
# test the --features "simd" of the arrow crate. This requires nightly Rust.
linux-test-simd:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/parquet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,9 @@ jobs:
- name: Check compilation --all-targets --all-features
run: |
cargo check -p parquet --all-targets --all-features
- name: Check compilation --all-targets --no-default-features --features json
run: |
cargo check -p parquet --all-targets --no-default-features --features json
clippy:
name: Clippy
Expand Down

0 comments on commit d73d78f

Please sign in to comment.