feat: implement tool calling support for workflow API #71
Workflow file for this run
This file contains hidden or 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: | |
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 ./... \; |