Skip to content

TSI-2123 add go test runner #3

TSI-2123 add go test runner

TSI-2123 add go test runner #3

Workflow file for this run

name: Run Go Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
npm install
npm run generate.go
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.0'
working-directory: ./clients/go
- name: Run Tests
run: |
cd ./clients/go/test
go test