Skip to content

Bump serde_json from 1.0.133 to 1.0.134 #146

Bump serde_json from 1.0.133 to 1.0.134

Bump serde_json from 1.0.133 to 1.0.134 #146

Workflow file for this run

name: Build
on:
push:
branches:
- "*"
pull_request:
env:
RUST_BACKTRACE: 1
jobs:
linux:
runs-on: ubuntu-latest
strategy:
matrix:
version:
- stable
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
components: rustfmt
- name: test
run: cargo test
- name: clippy
run: cargo clippy
- name: check formatting
run: cargo fmt -- --check