Skip to content

chore(deps): bump serde from 1.0.204 to 1.0.209 #57

chore(deps): bump serde from 1.0.204 to 1.0.209

chore(deps): bump serde from 1.0.204 to 1.0.209 #57

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches: [main]
paths:
- "**"
- "!/*.md"
- "!/**.md"
concurrency:
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: true
jobs:
lints:
name: Lint and Format
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
- name: Setup Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Run cargo fmt check
run: cargo fmt --check
- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
- name: Runs cargo clippy
run: cargo clippy -- -D warnings