Skip to content

No need for buffer (thanks Jan), doc cleanups #10

No need for buffer (thanks Jan), doc cleanups

No need for buffer (thanks Jan), doc cleanups #10

Workflow file for this run

on: push
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.x.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
name: Go ${{ matrix.go-version }} (${{ matrix.platform }})
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -race ./...