mirror of
https://github.com/ii64/sonic.git
synced 2026-06-21 00:46:43 +08:00
* feat (decoder): support streaming IO * opt: fine tune buffer size factors * feat (encoder): support streaming IO * doc: refactor format and add comments * fix: io.EOF dead loop * build: adjust CI files * doc: update README.md
26 lines
No EOL
668 B
YAML
26 lines
No EOL
668 B
YAML
# name: Push Check Go Windows
|
|
|
|
# on: push
|
|
|
|
# jobs:
|
|
# build:
|
|
# strategy:
|
|
# matrix:
|
|
# go-version: [1.15.x, 1.16.x, 1.17.x, 1.18.x]
|
|
# os: [windows-latest]
|
|
# runs-on: ${{ matrix.os }}
|
|
# steps:
|
|
# - uses: actions/checkout@v2
|
|
|
|
# - name: Set up Go
|
|
# uses: actions/setup-go@v3
|
|
# with:
|
|
# go-version: ${{ matrix.go-version }}
|
|
|
|
# - name: Unit Test
|
|
# run: go test -v -gcflags -d=checkptr=0 -covermode atomic -coverprofile coverage.out ./...
|
|
# env:
|
|
# GOMAXPROCS: 4
|
|
|
|
# - name: Generic Test
|
|
# run: go test -v -gcflags -d=checkptr=0 -covermode atomic ./generic_test |