Skip to content

Bump serde_json from 1.0.128 to 1.0.132 #588

Bump serde_json from 1.0.128 to 1.0.132

Bump serde_json from 1.0.128 to 1.0.132 #588

Workflow file for this run

name: CI
on:
push:
branches: main
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, macos-14, windows-2019]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ matrix.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- uses: IronCoreLabs/rust-toolchain@v1
- name: Test
run: cargo test
cargo-fmt:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: IronCoreLabs/rust-toolchain@v1
with:
components: rustfmt
- run: cargo fmt --all -- --check
- name: Cancel workflow
if: failure()
uses: andymckay/[email protected]