feat: android react on usb connection in host mode besides device mod… #4506
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: Check cargo deny | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- stable | |
jobs: | |
cargo-deny: | |
name: Cargo deny | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
checks: | |
- advisories | |
continue-on-error: ${{ matrix.checks == 'advisories' }} | |
steps: | |
- name: Checkout Sources | |
uses: actions/checkout@v4.1.1 | |
- name: Run cargo-deny | |
uses: EmbarkStudios/cargo-deny-action@5def368d93be6684ad20a0fdec5f23c8ea11e022 # v1.5.13 | |
with: | |
command: --manifest-path=./rust/Cargo.toml check ${{ matrix.checks }} |