Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/Li0k/iceberg-rust into li0k…
Browse files Browse the repository at this point in the history
…/catalog_sql_update_table
  • Loading branch information
Li0k committed Jan 13, 2025
2 parents 4a0c51e + 105e513 commit 8d0f168
Show file tree
Hide file tree
Showing 20 changed files with 1,161 additions and 454 deletions.
4 changes: 0 additions & 4 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ ignore = [
# Marvin Attack: potential key recovery through timing sidechannels
# Issues: https://github.com/apache/iceberg-rust/issues/221
"RUSTSEC-2023-0071",
# `instant` is unmaintained
#
# Introduced by datafusion, will be fixed in datafusion 44.
"RUSTSEC-2024-0384",
# `derivative` is unmaintained; consider using an alternative
#
# Introduced by hive_metastore, tracked at https://github.com/cloudwego/pilota/issues/293
Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,12 @@ jobs:
- name: Check License Header
uses: apache/skywalking-eyes/[email protected]

- name: Install cargo-sort
run: make install-cargo-sort

- name: Install taplo-cli
run: make install-taplo-cli
uses: taiki-e/install-action@v2
with:
tool: [email protected]
- name: Check toml format
run: make check-toml

- name: Cargo format
run: make check-fmt
Expand All @@ -61,11 +62,19 @@ jobs:
- name: Cargo clippy
run: make check-clippy

- name: Install cargo-sort
uses: taiki-e/install-action@v2
with:
tool: [email protected]
- name: Cargo sort
run: make cargo-sort
run: cargo sort -c -w

- name: Install cargo-machete
uses: taiki-e/install-action@v2
with:
tool: cargo-machete
- name: Cargo Machete
run: make cargo-machete
run: cargo machete

build:
runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Check typos
uses: crate-ci/typos@v1.28.4
uses: crate-ci/typos@v1.29.4
Loading

0 comments on commit 8d0f168

Please sign in to comment.