Skip to content

feat: implement tool calling support for workflow API #71

feat: implement tool calling support for workflow API

feat: implement tool calling support for workflow API #71

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- "main"
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.22", "1.23", "1.24"]
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: false
- name: Install dependencies
run: GOWORK=off find . -name go.mod -execdir go get . \;
- name: Build
run: GOWORK=off find . -name go.mod -execdir go build . \;
- name: Test
run: GOWORK=off find . -name go.mod -execdir go test ./... \;