Skip to content

fix(deps): update rust crate serde_json to v1.0.137 #414

fix(deps): update rust crate serde_json to v1.0.137

fix(deps): update rust crate serde_json to v1.0.137 #414

Workflow file for this run

name: Rust
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- uses: Swatinem/rust-cache@v2
- name: Check Rust Compiler Version
run: rustc --version
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose