iotdb-rs 0.0.2

Rust client for Apache IotDB
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
name: cargo-fmt

on:
  pull_request:
  push:
    branches: [ main ]

jobs:
  rust-fmt:
    name: Rust Fmt
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@master
      - name: Install Rust
        run: rustup update stable && rustup default stable && rustup component add rustfmt
      - run: cargo fmt -- --check