Skip to content

docs(REAME): add table of contents for options #15

docs(REAME): add table of contents for options

docs(REAME): add table of contents for options #15

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: stable
cache: false
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
run: go test -v -race ./...