Skip to content

Update serde monorepo to v1.0.215 #376

Update serde monorepo to v1.0.215

Update serde monorepo to v1.0.215 #376

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache
uses: actions/[email protected]
with:
path: target/
key: target
- run: sudo apt-get install -y libudev-dev
- name: Clippy
run: cargo clippy --workspace --all-targets --all-features -- -W clippy::all
continue-on-error: true
- name: Tests
run: cargo test --workspace
continue-on-error: true