fix(deps): update rust crate sentry to 0.49.0 #261
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: Rust workflow | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths-ignore: | |
| - "**/README.md" | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| env: | |
| CARGO_TERM_COLOR: always | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| action: | |
| - command: build | |
| args: --release | |
| - command: fmt | |
| args: --all -- --check --color always | |
| - command: clippy | |
| args: --all-targets --all-features --workspace -- -D warnings | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Install system library dependencies | |
| run: sudo apt-get update && sudo apt-get install -y libudev-dev libnfc-dev libdbus-1-dev | |
| - name: Enable caching | |
| uses: Swatinem/rust-cache@v2 | |
| - name: Run command | |
| run: cargo ${{ matrix.action.command }} ${{ matrix.action.args }} |