Skip to content

initial implementation #1

initial implementation

initial implementation #1

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.1'
- name: Install dependencies
run: go get .
- name: Test with the Go CLI
run: go test -v -race -p 1 ./...