Skip to content

refactor: migrate SSE streaming from channel-based to iterator pattern #19

refactor: migrate SSE streaming from channel-based to iterator pattern

refactor: migrate SSE streaming from channel-based to iterator pattern #19

Workflow file for this run

# Copyright 2025 yeeaiclub
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Post Coverage by Codecov
on:
push:
branches: [ main,dev,ci ]
paths-ignore:
- '.docs/**'
- '**.md'
pull_request:
branches: [ main,dev ]
paths-ignore:
- '.docs/**'
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 5
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.24.2"
- name: Build
run: go build -v ./...
- name: Test
run: go test -race -coverprofile=cover.out -v -timeout=2m ./...
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}