Skip to content

feat: native go tunnel and connection management #78

feat: native go tunnel and connection management

feat: native go tunnel and connection management #78

Workflow file for this run

name: Unit Tests
permissions:
contents: read
on:
push:
branches: [trunk]
pull_request:
branches: [trunk]
jobs:
test:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.24"
cache: true
- name: Install dependencies
run: go mod download
- name: Run unit tests
run: go test -v ./pkg/... ./cmd/...