Skip to content

Change test runner to match the build and deploy versions #10

Change test runner to match the build and deploy versions

Change test runner to match the build and deploy versions #10

Workflow file for this run

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