Skip to content

Merge pull request #6 from thuongh2/fix/embedding-and-clustering-bugs #31

Merge pull request #6 from thuongh2/fix/embedding-and-clustering-bugs

Merge pull request #6 from thuongh2/fix/embedding-and-clustering-bugs #31

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24"
- name: Test
run: go test ./... -count=1
- name: Vet
run: go vet ./...