qbsdiff 1.4.4

Fast and memory saving bsdiff 4.x compatible delta compressor and patcher.
Documentation
name: test

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

env:
  RUST_BACKTRACE: 1

jobs:
  test:
    strategy:
      matrix:
        os: [ ubuntu-latest, macos-latest, windows-latest ]
        rust_version: [ stable ]
    runs-on: ${{ matrix.os }}
    steps:
      - name: Checkout source code
        uses: actions/checkout@v2
      - name: Install rust toolchain
        uses: actions-rs/toolchain@v1
        with:
          toolchain: ${{ matrix.rust_version }}
          override: true
      - name: Build the library and all binaries
        uses: actions-rs/cargo@v1
        with:
          command: build
          args: --verbose --features cmd --bins
      - name: Run tests
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: --verbose