Skip to content

chore: prepare typescript sdk for release to npm #10

chore: prepare typescript sdk for release to npm

chore: prepare typescript sdk for release to npm #10

Workflow file for this run

name: Go Tests
on:
push:
branches: [ main ]
paths:
- 'go/**'
- '.github/workflows/go-*.yml'
pull_request:
branches: [ main ]
paths:
- 'go/**'
- '.github/workflows/go-*.yml'
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./go
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
cache: true
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v -race -coverprofile=coverage.txt ./...