Skip to content

fix(deps): update rust crate sentry to 0.49.0 #261

fix(deps): update rust crate sentry to 0.49.0

fix(deps): update rust crate sentry to 0.49.0 #261

Workflow file for this run

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 }}