floatd 0.1.0

FloatD is just num_traits::Float + Debug + Display.
Documentation
name: Rust

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: Setup Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true
        components: rustfmt

    - name: Check
      uses: actions-rs/cargo@v1
      with:
        command: check

    - name: Test
      uses: actions-rs/cargo@v1
      with:
        command: test

    - name: Format
      run: cargo fmt -- --check