Skip to content

chore(deps): bump serde_json from 1.0.134 to 1.0.135 #419

chore(deps): bump serde_json from 1.0.134 to 1.0.135

chore(deps): bump serde_json from 1.0.134 to 1.0.135 #419

Workflow file for this run

name: Rust
on:
push:
env:
CARGO_TERM_COLOR: always
jobs:
build-test:
name: Build and test (${{ matrix.os }})
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: swatinem/rust-cache@v2
- name: Clippy
run: cargo clippy --all-targets
- name: Build
run: cargo build --locked --all-targets
- name: Run tests (without coverage)
run: cargo test --all-targets