Skip to content

Anthropic support and refactor, delete summary function #16

Anthropic support and refactor, delete summary function

Anthropic support and refactor, delete summary function #16

Workflow file for this run

name: Go Test
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.20
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: go mod download
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...