bug fix: openai_functions_agent not compatible with the new llms.Model interface #1204
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: stable | |
# Cache is managed by golangci-lint | |
# https://github.com/actions/setup-go#caching-dependency-files-and-build-outputs | |
cache: false | |
- uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3.7.0 | |
with: | |
args: --timeout=4m | |
version: v1.55.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 | |
run: go test -v ./... |