arrange 0.1.3

Convenience functions for populating an array with values from a range.
Documentation
name: ci
on:
  pull_request:
  push:
    branches:
    - master
  schedule:
  - cron: '00 01 * * *'
jobs:
  test:
    name: test
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        build:
        - pinned
        - stable
        - beta
        - nightly
        - macos
        - win-msvc
        - win-gnu
        include:
        - build: pinned
          os: ubuntu-18.04
          rust: 1.39.0
        - build: stable
          os: ubuntu-18.04
          rust: stable
        - build: beta
          os: ubuntu-18.04
          rust: beta
        - build: nightly
          os: ubuntu-18.04
          rust: nightly
        - build: macos
          os: macos-latest
          rust: stable
        - build: win-msvc
          os: windows-2019
          rust: stable
        - build: win-gnu
          os: windows-2019
          rust: stable-x86_64-gnu
    steps:
    - name: Checkout repository
      uses: actions/checkout@v1
      with:
        fetch-depth: 1
    - name: Install Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: ${{ matrix.rust }}
        override: true
        profile: minimal
    - run: cargo build --verbose
    - run: cargo doc --verbose
    - run: cargo test --verbose
    - run: cargo build --verbose --manifest-path suffix_tree/Cargo.toml
    - run: cargo test --verbose --manifest-path suffix_tree/Cargo.toml
    - run: cargo doc --verbose --manifest-path suffix_tree/Cargo.toml
    - run: cargo run --example basic
    - if: matrix.rust == 'nightly'
      run: cargo bench --verbose --no-run

  rustfmt:
    name: rustfmt
    runs-on: ubuntu-18.04
    steps:
    - name: Checkout repository
      uses: actions/checkout@v1
      with:
        fetch-depth: 1
    - name: Install Rust
      uses: actions-rs/toolchain@v1
      with:
        toolchain: stable
        override: true
        profile: minimal
        components: rustfmt
    - name: Check formatting (root)
      run: |
        cargo fmt -- --check
    - name: Check formatting (arrange)
      run: |
        cargo fmt --manifest-path arrange/Cargo.toml -- --check