Skip to content

added link to demo into readme #62

added link to demo into readme

added link to demo into readme #62

Workflow file for this run

name: CI
on:
push:
branches: [main]
tags-ignore: ["*"]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.26"
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
install-mode: goinstall
- name: Test
run: go test -race ./...
- name: Vet
run: go vet ./...