Skip to content

add LICENSE

add LICENSE #4

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.x'
- name: Lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.57
- name: Test
run: go test -race -v ./...