Skip to content

chore(deps): bump serde from 1.0.164 to 1.0.181 #227

chore(deps): bump serde from 1.0.164 to 1.0.181

chore(deps): bump serde from 1.0.164 to 1.0.181 #227

Workflow file for this run

name: PR
on:
pull_request:
branches: [main]
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Rust (nightly)
uses: dtolnay/rust-toolchain@nightly
id: rust-toolchain
with:
components: rustfmt, clippy
- name: Run tests
run: cargo test --locked
- name: Run linting
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Check formatting
run: cargo fmt --all -- --check