Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,20 @@ env:
RUST_BACKTRACE: 1

jobs:
dependency-policy:
name: Dependency Policy
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v6

- name: Check dependency policy
uses: EmbarkStudios/cargo-deny-action@v2
with:
command: check all
arguments: --workspace

# Main build and test job with S3 features (default)
build-and-test:
runs-on: ubuntu-latest
Expand Down
1 change: 0 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ allow = [
"CC0-1.0",
"CDLA-Permissive-2.0", # Community Data License Agreement - used by webpki-roots
"Zlib",
"Unicode-DFS-2016",
"Unicode-3.0", # Unicode License v3 - used by ICU crates
"MPL-2.0",
]
Expand Down
Loading