Skip to content

fix: align thread-safety docs and add CI test coverage #149

fix: align thread-safety docs and add CI test coverage

fix: align thread-safety docs and add CI test coverage #149

Workflow file for this run

name: CI
on:
push:
branches: [ master, v2 ]
pull_request:
branches: [ master, v2 ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run tests
run: go test ./... -count=1 -race
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
skip-go-installation: true
args: --timeout 3m --verbose