Skip to content

fix the bug that dial_timeout_ms in cfg.toml does not work #265

fix the bug that dial_timeout_ms in cfg.toml does not work

fix the bug that dial_timeout_ms in cfg.toml does not work #265

Workflow file for this run

on: [push, pull_request]
name: Run Test Cases
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain: ['stable', '1.59.0', 'nightly-2022-05-09']
steps:
- name: Checkout repo
uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- uses: actions-rs/cargo@v1
with:
command: check
- run: rustup component add clippy
- uses: actions-rs/cargo@v1
with:
command: clippy
args: -- -D warnings
- uses: actions-rs/cargo@v1
env:
RUST_LOG: debug
with:
command: test
args: -- --show-output --test-threads=1