rercon 1.2.0

A simple RCON library with automatic reconnection support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: Run tests

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - name: Checkout git repository
      uses: actions/checkout@v1
    - name: Test code formatting
      run: cargo fmt --all -- --check
    - name: Test code correctness
      run: cargo clippy --all -- -D warnings
    - name: Run rust unit tests
      run: cargo test --all