Skip to content

feat: add fuzzy search #45

feat: add fuzzy search

feat: add fuzzy search #45

Workflow file for this run

name: Check build
on:
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, darwin ]
goarch: [ amd64, arm64 ]
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Build
env:
GOOS: ${{ matrix.goos }}
GOARCH: ${{ matrix.goarch }}
run: |
make build GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }}