neo_frizbee 0.7.2

Fast fuzzy matching via SIMD smith waterman, similar algorithm to FZF/FZY
Documentation
name: Test

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

env:
  CARGO_TERM_COLOR: always

jobs:
  build:
    strategy:
      matrix:
        include:
          - os: ubuntu-latest
            arch: x64
          - os: ubuntu-latest
            arch: arm64
    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v4

      - name: Install ARM64 target
        if: matrix.arch == 'arm64'
        run: rustup target add aarch64-unknown-linux-gnu

      - name: Build
        if: matrix.arch == 'x64'
        run: cargo build --verbose

      - name: Build (ARM64)
        if: matrix.arch == 'arm64'
        run: cargo build --verbose --target aarch64-unknown-linux-gnu

      - name: Run tests
        if: matrix.arch == 'x64'
        run: cargo test --verbose