Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

Add unit tests and test workflow #1

Add unit tests and test workflow

Add unit tests and test workflow #1

Workflow file for this run

name: Test
permissions:
contents: read
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "1.26"
cache: false
- name: Install dependencies
run: go get .
- name: Test
run: go test -v ./...