binary-merge 0.1.2

Minimum comparison merge of two sorted sequences with random access
Documentation
name: Rust

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: fmt
      run: cargo fmt --all -- --check
    - name: clippy
      run: cargo --locked clippy --all-targets -- -D warnings
    - name: Build
      run: cargo build --all-features --locked --verbose
    - name: Run tests
      run: cargo test --all-features --locked --verbose