Skip to content

chore(deps): bump serde from 1.0.197 to 1.0.199 #80

chore(deps): bump serde from 1.0.197 to 1.0.199

chore(deps): bump serde from 1.0.197 to 1.0.199 #80

Workflow file for this run

name: Branches
on:
pull_request:
types: [opened, reopened, synchronize]
branches-ignore:
- "release-please-*"
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
name: installing toolchain
with:
profile: default
toolchain: stable
override: true
components: rustfmt, clippy
- name: Rust Cache
uses: Swatinem/[email protected]
- uses: actions-rs/cargo@v1
name: fmt
with:
command: fmt
args: --all -- --check
- uses: actions-rs/cargo@v1
name: clippy
with:
command: clippy
args: --release -- -D warnings
- uses: actions-rs/cargo@v1
name: build
with:
command: build
args: --release