This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
fix (openai embedding): retry on transient stream error when reading embeddings response #153
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: | |
- main | |
env: | |
GO_VERSION: "1.22.x" | |
jobs: | |
test-suite: | |
timeout-minutes: 30 | |
name: Full Test Suite | |
runs-on: ubuntu-22.04 | |
steps: | |
# Setup | |
- uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "${{ env.GO_VERSION }}" | |
- name: Setup CI Tools | |
run: make ci-setup | |
- name: Build | |
run: make build | |
# Tests | |
- name: Run Go Tests | |
run: make test |