Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/workflows/pre-merge-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ on:
- '**.rs'
- 'Cargo.toml'
- 'Cargo.lock'
- 'deny.toml'

# Cancel any previous check runs for the same pull request to avoid redundant workflows.
concurrency:
Expand Down Expand Up @@ -75,7 +76,7 @@ jobs:
working-directory: ${{ matrix.dir }}
run: |
cargo-deny --version || cargo install cargo-deny@0.16.4
cargo-deny --no-default-features check --hide-inclusion-graph licenses bans --config ${{ github.workspace }}/deny.toml
cargo-deny --all-features check licenses bans --config ${{ github.workspace }}/deny.toml
# Have an explicit step to build tests first to separate time spent on build vs execution.
- name: Compile Tests
working-directory: ${{ matrix.dir }}
Expand Down
3 changes: 2 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ allow = [
"NCSA",
"LGPL-3.0",
"CC0-1.0",
"Unicode-DFS-2016"
"Unicode-DFS-2016",
"WTFPL"
]

# TODO exceptions
Expand Down
Loading