http: init BodyReader fields #1222
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: Build-Linux | |
on: | |
push: | |
branches: | |
- master | |
- dev | |
pull_request: | |
branches: | |
- master | |
- dev | |
env: | |
GO111MODULE: off | |
jobs: | |
Build-Linux: | |
name: Build-Linux | |
strategy: | |
fail-fast: false | |
matrix: | |
go: [1.18.x] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os}} | |
steps: | |
- name: install golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: checkout | |
uses: actions/checkout@v2 | |
- name: go env | |
run: | | |
printf "$(go version)\n" | |
printf "\n\ngo environment:\n\n" | |
go get -u github.com/lesismal/nbio | |
ulimit -n 30000 | |
go env | |
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | |
- name: go test | |
run: go test -covermode=atomic -timeout 60s -coverprofile="./coverage" |