Skip to content

add MIT license

add MIT license #17

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22.5
- name: Install dependencies
run: go mod tidy
- name: Run tests
run: go test ./... -v -race -coverprofile=coverage.txt -covermode=atomic