fix: Supports bufio use also for strings larger than 4096 bytes. #25
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
test: | |
strategy: | |
matrix: | |
go-version: [ 1.19.x, 1.20.x, 1.21.x ] | |
os: [ ubuntu-latest ] | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 5 | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
go install gotest.tools/gotestsum@latest | |
go get -v -t -d ./... | |
- name: Test | |
timeout-minutes: 3 | |
run: gotestsum --junitfile unit-tests.xml -- -v -race ./... |