Skip to content

Fix race condition with unused code #64

Fix race condition with unused code

Fix race condition with unused code #64

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test
strategy:
matrix:
go: ['1.12', '1.13', '1.14', '1.15', '1.16']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
stable: false
- name: Test
run: go vet . && go build . && go test -race -covermode=atomic -count=1 -coverprofile=coverage.out .