Skip to content

New: add basic docs and guide (#3) #18

New: add basic docs and guide (#3)

New: add basic docs and guide (#3) #18

Workflow file for this run

name: Unit tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run tests with coverage
run: go test -v ./... -coverprofile=coverage.out -covermode=atomic
- name: Run tests -race
run: go test -v ./... -race