Skip to content

Commit f15651b

Browse files
committed
Add workflow to run cargo deny
1 parent 2f0a793 commit f15651b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/rust.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,20 @@ jobs:
109109
# cargo fmt -p parquet -- --config skip_children=true `find . -name "*.rs" \! -name format.rs`
110110
cargo fmt -p parquet -- --check --config skip_children=true `find . -name "*.rs" \! -name format.rs`
111111
112+
deny:
113+
name: cargo deny
114+
runs-on: ubuntu-latest
115+
container:
116+
image: amd64/rust
117+
steps:
118+
- uses: actions/checkout@v4
119+
- name: Setup Rust toolchain
120+
uses: ./.github/actions/setup-builder
121+
- name: Setup cargo deny
122+
run: rustup component add deny
123+
- name: Run cargo deny
124+
run: cargo deny check
125+
112126
msrv:
113127
name: Verify MSRV (Minimum Supported Rust Version)
114128
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)