bitarray 0.10.0

A const generics driven bit array specialized for hamming distance
on:
  push:
    branches:
      - main
  pull_request:

name: tests

jobs:
  tests:
    name: tests
    runs-on: ubuntu-latest
    strategy:
      matrix:
        features:
          - 
          - --features unstable-512-bit-simd
          - --features serde
    steps:
      - name: Checkout sources
        uses: actions/checkout@v2

      - name: Install nightly toolchain
        uses: actions-rs/toolchain@v1
        with:
          profile: minimal
          toolchain: nightly
          override: true

      - name: Run cargo test
        uses: actions-rs/cargo@v1
        with:
          command: test
          args: ${{ matrix.features }}