openai: add support for sending Structured Output request for chat c… #2261
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
# Cache is managed by golangci-lint | |
# https://github.com/actions/setup-go#caching-dependency-files-and-build-outputs | |
cache: false | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
args: --timeout=4m | |
version: v1.59.1 | |
build-examples: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
cache: false | |
- uses: actions/checkout@v3 | |
- name: Build examples | |
run: make build-examples | |
build-test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
- uses: actions/checkout@v3 | |
- name: Build | |
run: go build -v ./... | |
- name: Test | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
GENAI_API_KEY: ${{ secrets.GENAI_API_KEY }} | |
run: go test -v ./... |