We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f0a793 commit f15651bCopy full SHA for f15651b
.github/workflows/rust.yml
@@ -109,6 +109,20 @@ jobs:
109
# cargo fmt -p parquet -- --config skip_children=true `find . -name "*.rs" \! -name format.rs`
110
cargo fmt -p parquet -- --check --config skip_children=true `find . -name "*.rs" \! -name format.rs`
111
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
+
126
msrv:
127
name: Verify MSRV (Minimum Supported Rust Version)
128
runs-on: ubuntu-latest
0 commit comments