File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,11 @@ jobs:
17
17
- name : Build
18
18
run : cargo build --verbose
19
19
- name : Run iceberg-rust-spec tests
20
- run : cargo test -p iceberg-rust-spec --lib --verbose
20
+ run : make test- iceberg-rust-spec
21
21
- name : Run iceberg-rust tests
22
- run : cargo test -p iceberg-rust --lib --verbose
22
+ run : make test- iceberg-rust
23
23
- name : Run datafusion-iceberg tests
24
- run : cargo test -p datafusion_iceberg --tests --verbose -j 2
24
+ run : make test- datafusion_iceberg
25
25
26
26
lint :
27
27
runs-on : ubuntu-latest
30
30
- name : Install Clippy
31
31
run : rustup component add clippy
32
32
- name : Run Clippy
33
- run : cargo clippy --all-targets --all-features -- -D warnings
33
+ run : make clippy
Original file line number Diff line number Diff line change
1
+ test : test-iceberg-rust-spec test-iceberg-rust test-datafusion_iceberg
2
+
3
+ test-iceberg-rust-spec :
4
+ cargo test -p iceberg-rust-spec --lib
5
+
6
+ test-iceberg-rust :
7
+ cargo test -p iceberg-rust --lib
8
+
9
+ test-datafusion_iceberg :
10
+ cargo test -p datafusion_iceberg --tests -j 2
11
+
12
+ clippy :
13
+ cargo clippy --all-targets --all-features -- -D warnings
You can’t perform that action at this time.
0 commit comments