Skip to content

Fix ttl

Fix ttl #8

Workflow file for this run

name: Go
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.1'
- name: Install dependencies
run: go mod vendor
- name: Test with the Go CLI
run: go test ./...