bonsai 0.2.1

Index arithmetic functions for perfect binary trees.
Documentation
name: test

on: [pull_request, push]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v1
    - name: Build
      run: 
        cargo build --release --verbose
    - name: Run tests
      run: 
        cargo test --release --verbose
    - name: Build for u128
      run: 
        cargo build --release --verbose --no-default-features --features=u128
    - name: Run tests for u128
      run: 
        cargo test --release --verbose --no-default-features --features=u128