Skip to content

chore(deps): bump serde_json from 1.0.91 to 1.0.103 #160

chore(deps): bump serde_json from 1.0.91 to 1.0.103

chore(deps): bump serde_json from 1.0.91 to 1.0.103 #160

Workflow file for this run

name: Rust Check
on:
push:
pull_request:
jobs:
cocogitto:
name: Cocogitto
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
- run: |
cargo install --locked cocogitto
cog check
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- run: cargo fmt --all -- --check
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: clippy
- run: cargo clippy -- -D warnings