Skip to content

feat(wecom): add streaming message support with StreamReplier interface #174

feat(wecom): add streaming message support with StreamReplier interface

feat(wecom): add streaming message support with StreamReplier interface #174

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Sanity check
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.25'
- name: vet
run: go vet -v ./...
- name: lint
uses: golangci/golangci-lint-action@v6
with:
install-mode: "goinstall"
version: v1.64
- name: test models
run: go test -v ./pkg/models/...