Skip to content

Bump tokio from 1.41.0 to 1.41.1 #22

Bump tokio from 1.41.0 to 1.41.1

Bump tokio from 1.41.0 to 1.41.1 #22

Workflow file for this run

on:
push:
branches:
- main
paths:
- "**.rs"
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-test.yml
pull_request:
paths:
- "**.rs"
- Cargo.toml
- Cargo.lock
- .github/workflows/cargo-test.yml
workflow_dispatch:
permissions: read-all
name: cargo test
jobs:
cargotest:
name: cargo test
runs-on: ubuntu-latest
strategy:
matrix:
flags: [
"--all-targets --all-features",
"--all-targets --no-default-features --features ''"
]
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- name: cargo test
shell: bash
run: |
cargo test ${{ matrix.flags }}