Skip to content

Error: Rename 'PingTimeout' to 'ConnectionTimeout' #13

Error: Rename 'PingTimeout' to 'ConnectionTimeout'

Error: Rename 'PingTimeout' to 'ConnectionTimeout' #13

Workflow file for this run

name: Rust build & test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --verbose
- name: Run tests
uses: actions-rs/cargo@v1
with:
command: test