Skip to content

chore(deps): bump serde_json from 1.0.121 to 1.0.122 (#259) #524

chore(deps): bump serde_json from 1.0.121 to 1.0.122 (#259)

chore(deps): bump serde_json from 1.0.121 to 1.0.122 (#259) #524

Workflow file for this run

on:
push:
branches:
- main
pull_request:
branches:
- main
name: Test
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout 🛎️
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain 🛎️
with:
components: rustfmt, clippy
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
name: Check Code Format 🔧
with:
command: fmt
args: -- --check
- uses: actions-rs/cargo@v1
name: Run Clippy Lints 🔨
with:
command: clippy
args: --all-targets
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout 🛎️
- uses: actions-rs/toolchain@v1
name: Setup Cargo Toolchain 🛎️
with:
profile: minimal
toolchain: stable
default: true
- uses: Swatinem/rust-cache@v1
- uses: actions-rs/cargo@v1
name: Running Tests 🚀
with:
command: test
args: --workspace