Skip to content

Add image and audio to prompt/exec #4

Add image and audio to prompt/exec

Add image and audio to prompt/exec #4

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.24.x"
- name: Tidy
run: go mod tidy
- name: Format check
run: test -z "$(gofmt -l .)"
- name: Vet
run: go vet ./...
- name: Test
run: go test -short -timeout 5m ./...