Skip to content

chore(deps): bump tokio from 1.52.3 to 1.53.0 #153

chore(deps): bump tokio from 1.52.3 to 1.53.0

chore(deps): bump tokio from 1.52.3 to 1.53.0 #153

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- main
permissions:
contents: read
jobs:
rust:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Cache Rust build artifacts
uses: Swatinem/rust-cache@v2.9.1
- name: Install Rust components
run: rustup component add rustfmt clippy
- name: Check formatting
run: cargo fmt --check
- name: Lint
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Test
run: cargo test --all-features