Skip to content

Commit

Permalink
Merge pull request datafusion-contrib#32 from chmp/feature/flexible-i…
Browse files Browse the repository at this point in the history
…mpls

Feature/flexible impls
  • Loading branch information
chmp authored Apr 1, 2023
2 parents f5aefe3 + 89357a4 commit e04ec94
Show file tree
Hide file tree
Showing 47 changed files with 3,380 additions and 1,356 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,17 @@ jobs:
run: rustc --version
- name: cargo version
run: cargo --version
# TODO: autogenerate
- name: check
run: |
cargo check --verbose
cargo check --verbose --features arrow2-0-16
cargo check --verbose --features arrow2-0-17
cargo check --verbose --features arrow-35
cargo check --verbose --features arrow-36
# TODO: autogenerate
- name: Run tests
run: cargo test --verbose --features arrow2
run: cargo test --verbose --features arrow2-0-17,arrow-36
- name: Publish to crates.io
working-directory: serde_arrow
run: cargo publish
13 changes: 11 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,16 @@ jobs:
run: rustc --version
- name: cargo version
run: cargo --version
# TODO: auto-generate
- name: check
run: |
cargo check --verbose
cargo check --verbose --features arrow2-0-16
cargo check --verbose --features arrow2-0-17
cargo check --verbose --features arrow-35
cargo check --verbose --features arrow-36
# TODO: auto-generate
- name: Build
run: cargo build --verbose --features arrow2
run: cargo build --verbose --features arrow2-0-17,arrow-36
- name: Run tests
run: cargo test --verbose --features arrow2
run: cargo test --verbose --features arrow2-0-17,arrow-36
Loading

0 comments on commit e04ec94

Please sign in to comment.