Skip to content
This repository has been archived by the owner on Jan 24, 2025. It is now read-only.

Add legacy docs

Add legacy docs #4

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- '*'
tags-ignore:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.23
- name: Build
run: go build
- name: Run tests
run: go test -v ./...