Skip to content

Bump serde_json from 1.0.121 to 1.0.122 #226

Bump serde_json from 1.0.121 to 1.0.122

Bump serde_json from 1.0.121 to 1.0.122 #226

Workflow file for this run

on:
push:
branches: [master]
pull_request:
branches: [master]
name: Rust
jobs:
ci:
name: CI Build
runs-on: ubuntu-latest
strategy:
matrix:
features: [--all-features]
fail-fast: false
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
components: rustfmt, clippy
- name: Install nextest
uses: taiki-e/install-action@v1
with:
tool: nextest
- name: Rust Cache
uses: Swatinem/[email protected]
- name: Run cargo check
uses: actions-rs/cargo@v1
with:
command: check
- name: Run cargo fmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Run cargo clippy
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: ${{ matrix.features }} -- -D warnings
- name: Run library tests
uses: actions-rs/cargo@v1
with:
command: nextest
args: run ${{ matrix.features }}
- name: Run doc tests
uses: actions-rs/cargo@v1
with:
command: test
args: --doc
- name: Run cargo doc
uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps