bintext 0.1.3

Encode and decodes binary encoded text into aligned binary blobs using SIMD
Documentation
name: Build

on:
  push:
    branches: [ main ]
  pull_request:
    branches: [ main ]

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - uses: actions-rs/toolchain@v1
        with:
          toolchain: stable
          override: true

      - uses: actions-rs/toolchain@v1
        with:
          toolchain: nightly
          components: rustfmt

      - name: Build
        run: cargo check

      - name: Check the format
        run: cargo +nightly fmt --all -- --check

      - name: Run tests
        run: cargo test --workspace