Skip to content

fix(deps): update rust crate tokio-stream to v0.1.17 #52

fix(deps): update rust crate tokio-stream to v0.1.17

fix(deps): update rust crate tokio-stream to v0.1.17 #52

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
RUST_LOG: info
RUST_BACKTRACE: 1
jobs:
test:
name: Lint and test
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
components: clippy, rustfmt
- name: Lint and test
run: |
cargo fmt -- --check
cargo clippy -- -D warnings
cargo test