Add configurable KVP client API and harden concurrent telemetry writes #871
Workflow file for this run
This file contains hidden or 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: "Run Clippy for Linting" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 0 * * 0' | |
| jobs: | |
| clippy: | |
| name: Run clippy on azure-init | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| rust-toolchain: [stable, "1.88.0"] | |
| steps: | |
| - name: Install libudev | |
| run: | | |
| sudo apt update | |
| sudo apt install -y libudev-dev | |
| - uses: actions/checkout@v6 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{matrix.rust-toolchain}} | |
| components: clippy | |
| - name: Run clippy | |
| run: cargo clippy --all-targets --all-features --verbose -- --deny warnings |