fix the bug that dial_timeout_ms in cfg.toml
does not work
#265
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |