Skip to content

Bump serde_json from 1.0.132 to 1.0.134 #59

Bump serde_json from 1.0.132 to 1.0.134

Bump serde_json from 1.0.132 to 1.0.134 #59

Workflow file for this run

on:
push:
branches:
- main
paths:
- "**.rs"
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-test.yml
pull_request:
paths:
- "**.rs"
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-test.yml
workflow_dispatch:
permissions: read-all
name: cargo test
jobs:
cargotest:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install latest rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: rustfmt, clippy
- uses: taiki-e/install-action@cargo-llvm-cov
- uses: taiki-e/install-action@nextest
- name: Rust Cache
uses: Swatinem/[email protected]
- name: cargo test
shell: bash
run: |
cargo build --all
cargo nextest run --all --test-threads=1 --no-fail-fast