Skip to content

feat: use testcontainers-go module for qdrant (#41) #1

feat: use testcontainers-go module for qdrant (#41)

feat: use testcontainers-go module for qdrant (#41) #1

Workflow file for this run

name: Go CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
- name: Build
run: go build ./...
- name: Run Tests
run: go test -v ./...