Skip to content

fix/close-invoke-race: releasing lock when Invoke exits early #253

fix/close-invoke-race: releasing lock when Invoke exits early

fix/close-invoke-race: releasing lock when Invoke exits early #253

Workflow file for this run

name: wsrpc
on: push
jobs:
ci_test:
name: CI Tests
runs-on: ubuntu-latest
steps:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: "go.mod"
cache: true
- name: Cache dependencies
uses: actions/cache@v2
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go
- name: Run Test Suite
run: go test -p=1 -race ./...