Return useful error when encountering unknown kafka API key (#1477) #3102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: License Check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Cancel already running jobs | |
concurrency: | |
group: license_check_${{ github.head_ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
RUST_BACKTRACE: 1 | |
jobs: | |
license_check: | |
runs-on: ubuntu-22.04 | |
name: License Check | |
steps: | |
- uses: actions/checkout@v3 | |
- run: cargo install --locked cargo-deny | |
- run: cargo deny check licenses |