bounded 0.2.0

Bounded numeric types
name: ci

on:
  push:
    branches: [debug, main, release]
  pull_request:
    branches: [main]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        toolchain: [nightly]
        os: [windows-latest, ubuntu-latest, macos-latest]

    runs-on: ${{ matrix.os }}

    steps:
    - uses: actions/checkout@v2
    - uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.toolchain }}
        components: rustfmt, clippy
        override: true
    - name: Build
      run: cargo build --verbose
    - name: Build with all features
      run: cargo build --all-features --verbose
    - name: Test
      run: cargo test --verbose
    - name: Test with all features
      run: cargo test --all-features --verbose