Skip to content

feat(async-io):add support of async io in read and write. #10

feat(async-io):add support of async io in read and write.

feat(async-io):add support of async io in read and write. #10

Workflow file for this run

name: CI
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
jobs:
test-go-latest:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.19', '1.20' ]
name: Go ${{ matrix.go }} Test
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v --cover ./...