add async io writer #1417
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 | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
go-version: ['tip', '1.22', '1.21', '1.20', '1.19', '1.18'] | |
steps: | |
- name: Setup Go | |
if: matrix.go-version != 'tip' | |
uses: actions/setup-go@master | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Setup Go tip if needed | |
if: matrix.go-version == 'tip' | |
run: | | |
set -ex | |
curl --head https://github.com/phuslu/go/releases/download/v0.0.0/gotip.linux-amd64.tar.xz | |
sleep 1 | |
curl -LOJ https://github.com/phuslu/go/releases/download/v0.0.0/gotip.linux-amd64.tar.xz | |
rm -rf /usr/local/go | |
sudo tar xJf gotip.linux-amd64.tar.xz -C /usr/local | |
sudo ln -sf /usr/local/go/bin/go /usr/bin/go | |
go version | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: go build -v -race | |
- name: Test | |
run: go test -v | |
- name: Bench | |
run: go test -v -run=none -bench=. | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.22' | |
check-latest: true | |
- uses: actions/checkout@v4 | |
- name: Lint | |
run: | | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.57.2 | |
./bin/golangci-lint run |