Skip to content

build(deps): bump serde_json from 1.0.149 to 1.0.150 #65

build(deps): bump serde_json from 1.0.149 to 1.0.150

build(deps): bump serde_json from 1.0.149 to 1.0.150 #65

Workflow file for this run

name: ci
on:
push:
branches: ["master"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: [stable, nightly]
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@v1
with:
toolchain: ${{ matrix.toolchain }}
components: rustfmt, clippy
- name: cargo fmt
if: matrix.toolchain == 'stable'
run: cargo fmt --all -- --check
- name: cargo clippy
if: matrix.toolchain == 'stable'
run: cargo clippy --all-targets --all-features -- -D warnings
- name: cargo test
run: cargo test