Skip to content

改进 SSE读取错误处理将读取错误处理机制从日志记录更改为向客户端发送错误消息,并在发送错误消息后中断循环。这样可以让客户端更及时地了解到… #32

改进 SSE读取错误处理将读取错误处理机制从日志记录更改为向客户端发送错误消息,并在发送错误消息后中断循环。这样可以让客户端更及时地了解到…

改进 SSE读取错误处理将读取错误处理机制从日志记录更改为向客户端发送错误消息,并在发送错误消息后中断循环。这样可以让客户端更及时地了解到… #32

Workflow file for this run

name: Makefile CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.23.0'
- name: Build
run: go build -v ./...
- name: Make
run: make build-all